A masked input — characters are hidden as the user types. Use for passwords, PINs, or any other sensitive string that shouldn't be visible on screen.
Conditional options
- Min Length — minimum acceptable length.
- Show Password Confirmation Box? — when on, the form renders a second masked input and requires both to match before submission. Use for change-password forms.
How the value is stored
By default, as plain text (so subsequent reads return the entered value). For genuinely sensitive secrets, also enable the field's Encrypt option to store the value encrypted at rest.
User passwords (.users table)
For actual user authentication, the platform manages password hashing internally — you don't use a Password field for that. Password fields are for application-data passwords (e.g. credentials a workflow stores for connecting to an external system).