A simple password generator built with HTML, CSS, and JavaScript.
- Open the
index.html
file in any modern browser. - Click the "Generate Password" button.
- Your generated password will be displayed in the designated area.
If you wish to adjust the password length or included characters, you can edit the script.js
file and modify the length
and charset
variables as needed.
const length = 12; // Change the password length as needed
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+";
This project is licensed under the MIT License.