https://github.com/sagnik-coder24/password-checker
Check if your password is strong or not!
https://github.com/sagnik-coder24/password-checker
css html javascript password-strength
Last synced: 2 months ago
JSON representation
Check if your password is strong or not!
- Host: GitHub
- URL: https://github.com/sagnik-coder24/password-checker
- Owner: Sagnik-Coder24
- Created: 2021-08-18T08:06:58.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T17:43:22.000Z (over 1 year ago)
- Last Synced: 2025-08-01T04:46:19.761Z (11 months ago)
- Topics: css, html, javascript, password-strength
- Language: JavaScript
- Homepage: https://password-checker-2407.netlify.app/
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password Checker Website
This is a simple web-based password checker that evaluates the strength of a password based on various criteria. It provides real-time feedback on the password strength as you type.
## Features
- **Strength Indicator:** Visual representation of password strength.
- **Criteria Check:** Evaluates passwords based on length, character variety, and common patterns.
## Demo
You can view a live demo [here](https://password-checker-2407.netlify.app/).
## Usage
To use the password checker, simply open the `index.html` file in your preferred web browser. Enter a password in the input field to see its strength evaluation.
### File Structure
```
/password-checker
├── index.html
├── styles.css
└── script.js
```
- `index.html`: The main HTML file that structures the password input and display area.
- `styles.css`: The CSS file that styles the password checker and its components.
- `script.js`: The JavaScript file that contains the logic for checking password strength.
## How It Works
1. **Input Field:** The user types a password into the input field.
2. **Real-Time Feedback:** The strength of the password is evaluated in real-time based on predefined criteria.
3. **Strength Indicator:** The website displays a visual indicator showing how many criterias the password satisfies.
## Customization
Feel free to modify the criteria in `script.js` and the styles in `styles.css` to change how the password strength is evaluated and displayed.
## Acknowledgments
- This project aims to promote better password practices and enhance user security.