A simple web-based tool to generate strong and secure passwords with various options.
You can try the live demo of this Password Generator here.
- Generate random passwords with specified length.
- Customize your passwords by including uppercase letters, lowercase letters, numbers, and symbols.
- Visual strength indicator for password security.
- Copy generated passwords to the clipboard with one click.
- Visit the Password Generator website.
- Adjust the password length using the slider.
- Choose the character types you want to include in your password.
- The strength indicator will display the password's security level.
- Click the "Generate Password" button.
- Your new password will appear in the input field.
- Click the copy button to copy the password to your clipboard.
If you want to run this project locally, follow these steps:
-
Clone this repository:
git clone https://github.com/skimran-coder/Password_Generator.git
-
Open the
index.html
file in your web browser.
The Password Generator uses JavaScript to generate random passwords based on your selected criteria. It utilizes the following character sets: uppercase letters, lowercase letters, numbers, and symbols. The generated password is then displayed and can be copied to the clipboard for easy use.
You can customize the Password Generator by:
- Adjusting the minimum and maximum password length in the JavaScript file (
index.js
). - Modifying the character sets used for generating passwords.
- Changing the colors and styles of the user interface in the CSS file (
style.css
).
Feel free to tailor the generator to your specific needs.
If you'd like to contribute to this project, please follow these guidelines:
- Fork the repository.
- Create a new branch for your feature:
git checkout -b feature-name
. - Commit your changes:
git commit -m 'Add some feature'
. - Push to your branch:
git push origin feature-name
. - Submit a pull request.