password
Password
Secure password entry with feedback
What it solves
A Password Input is a specialized text field designed to securely collect user passwords. It masks characters to prevent onlookers from reading the input and may include additional security features such as password visibility toggles, strength indicators, and validation requirements. Password fields are commonly used in authentication forms, account creation, and security-related input fields where sensitive data entry is required.
When to use
- Login and authentication forms – Securing user access to accounts.
- Account creation and password updates – Ensuring users create strong, secure passwords.
- Two-factor authentication (2FA) or PIN entry – Protecting access to critical information.
- Security-sensitive fields – Protecting data such as encryption keys or private access codes.
When to avoid
- For non-sensitive text input – Use a standard text field instead.
- For one-time codes (OTP) or PINs – Use the Code Confirmation pattern instead.
- For password confirmation fields – Use an inline validation approach to avoid user frustration.
Implementation workflow
- Confirm the pattern matches the problem and constraints before copying the example.
- Start from the anatomy and examples in
references/pattern.md, then choose the smallest viable variation. - Apply accessibility, performance, and interaction guardrails before layering visual polish.
- Use the testing guidance to verify behavior across keyboard, screen reader, responsive, and failure scenarios.
Accessibility guardrails
Do's ✅
- Ensure the password toggle is keyboard accessible.
- Use aria-describedby to associate password requirements with the input field.
- Maintain high contrast and clear focus states.
- Allow users to verify their input without compromising security. Don'ts ❌
- Don't rely on placeholder text for password guidance—it disappears when users type.
- Avoid requiring excessive special characters that make passwords difficult to remember.
- Don't assume all users can see visual strength indicators—provide text-based guidance.
Related patterns
- https://uxpatterns.dev/patterns/forms/code-confirmation
- https://uxpatterns.dev/patterns/forms/text-field
For full implementation detail, examples, and testing notes, see references/pattern.md.
Pattern page: https://uxpatterns.dev/patterns/forms/password
More from thedaviddias/ux-patterns-for-developers
button
Use when you need to trigger actions and submit forms.
5autocomplete
Use when implementing suggest options as users type.
4notification
Use when you need to inform users about important updates.
3tooltip
Use when implementing provide additional context on hover or focus.
3navigation-menu
Use when you need to organize and structure site navigation.
3textarea
Use when implementing multi-line text input for longer content.
3