This project aims to implement a website that generates a random password base on the following user input:
- Length of the password. Length must be between 8 a 128 characters
- Uppercase selection: TRUE/FALSE
- Lowercase selection: TRUE/FALSE
- Numeric selection: TRUE/FALSE
- Special character selection: TRUE/FALSE
The user should select at least one character type. Using the users input a random password is generated and displayed on the webpage.
The website was implemented using JavaScript, HTML and CSS.
-Special characters: !"#$%&'()*+,-./:;<=>?@[]^_`{|}~
List of Password Special Characters from the OWASP Foundation
Respository can be accessed at https://github.com/danielfloresd/secure-password-generator/. Source code direct download is located at https://github.com/danielfloresd/secure-password-generator/archive/refs/heads/main.zip
To view the website, please visit https://danielfloresd.github.io/secure-password-generator/
Started code provided by UofA bootcamp