WUI logo

PasswordInput

The Password Input component is a specialized input field designed for securely capturing user passwords. It masks the entered text to protect sensitive information from being seen by onlookers. This component often includes additional features such as visibility toggles, strength indicators, and validation rules to enhance security and usability.

import * as React from 'react'
import { PasswordInput } from '@welcome-ui/password-input'
const Example = () => {
return <PasswordInput name="password" placeholder="Enter your password" />
}
export default Example

Installation

1

Run the following command:

yarn add @welcome-ui/password-input
2

Import component:

import { PasswordInput } from '@welcome-ui/password-input'