How display the password?

Hello,

How display my password? (to check if i haven’t written a mistake) (when i want to connect my user account)

1 Like

To display the password in Adalo, use a Text Input with “Password” type, then add an eye icon to toggle visibility.

You’ll need two stacked inputs (masked & unmasked) and a toggle action to switch between them.

1 Like

I understood the fact to have 2 stacked (hiden and not hiden), but, i don’t understand how it’s possible to put a “Text Input” with Password… because it’s already in a form that is setup by default… :confused: can you explain me more please?

When Adalo generates the default login or signup form, the password field is preconfigured and locked into the form component. To customize it (and enable the show/hide password toggle), you should remove the default form entirely and recreate Manually.

this might help you Text Input | Adalo Resources

@LuckyTravel what is probably meant here is that you have 2 textfields with conditional visibility, one set to “normal” and another set to “password”, and an icon which toggles visibility condition for these fields.
Technically it is possible to implement.

What is not mentioned in this AI-generated answer, is:

  • where to store the condition for a visibility (e.g. if user isn’t logged-in yet, there should be another input for it);
  • there should be probably 2 icons - one with eye open and another with eye closed;
  • and, what is more interesting, how these 2 inputs are going to be synced and how the password should be sent to the backend.

Best,
Victor.