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
}| Property | Type | Description |
|---|---|---|
placeholder | string | Field placeholder |
minLength | number | Minimum required length. |
maxLength | number | Maximum allowed length. |