Form control: Password

The password control is a variation on the text input control that uses type="password" on the <input> element. It also provides some configurable functionality around providing feedback and validation against password policies

Arguments

See arguments that can be passed to the text input control. In addition:

passwordPolicyContext (optional) Either 'admin', or 'website'. If set, a password strength validator and indicator will be provided to match either the website or admin password policy set in the Preside administrator.
outputSavedValue (optional) True of false (default). Whether or not to insecurely output the saved password in the form field when editing a saved record.

Example

<field name="password" control="password" required="true" passwordPolicyContext="website" />