The InputPassword component is a password input field.
Prop | Type | Description |
---|---|---|
className | string | Additional CSS classes. |
name | string | Identifier for the input in form submission. |
label | string | Label text for the input field. |
register | function | Function to register the input with the useForm hook. |
required | boolean | Specifies if the field is required. |
minLength | number | Minimum length of the password. |
maxLength | number | Maximum length of the password. |
focused | boolean | Whether the input should be focused on mount. |
autoComplete | boolean | Enables or disables autocomplete (on, off). |
disabled | boolean | Disables interaction with the input field. |