Skip to content

Form Field: Password Input

Type: password

Input field where text is masked.

javascript
{
  id: 'password',
  type: 'password',
  label: 'Password',
  placeholder: 'Enter password...',
  defaultValue: '',
  required: true,
  minLength: 8,
  maxLength: 100
}
PropertyTypeDescription
placeholderstringField placeholder
minLengthnumberMinimum required length.
maxLengthnumberMaximum allowed length.