This project is a Password Strength Meter built using HTML, CSS, and JavaScript. It allows users to enter a password and visually see its strength categorized as Weak, Medium, or Strong.
- Real-time password strength checking
- Strength levels: Weak, Medium, Strong
- Show/Hide password toggle
- Background color changes based on strength
- Suggests strong passwords
- HTML for structure
- CSS for styling and UI enhancements
- JavaScript for dynamic behavior
|-- index.html # Main HTML file |-- style.css # Stylesheet for design and layout |-- script.js # JavaScript for password strength logic
- Open index.html in a web browser.
- Type a password in the input field.
- See the strength indicator change color:
- Red for Weak
- Orange for Medium
- Green for Strong
- Click the eye icon to show/hide the password.
- If the input is empty, suggested strong passwords will appear.
No installation is required. Simply open index.html in V/S Code.
- Uses regular expressions to check for:
- Lowercase letters
- Uppercase letters
- Numbers
- Special characters
- The more complexity, the stronger the password
- Strength levels are visually indicated.
