Adam Martin
GT Coding Boot Camp Homework #3
Created: 05/15/2022
Due: 05/16/2022
GitRepo: https://github.com/AmartinVT/Week3Homework
GitPage: https://amartinvt.github.io/Week3Homework/
This project is a random password generator web application. The user clicks the "Generate Password" button to launch the application.
The user is then prompted to enter the desired password length. The app requires the length to be between 8 and 128 characters, otherwise the user is alerted of the error and the application restarts.
Once the user enters a valid length, the user is then prompted to customize the password criteria.
The first prompt asks if there can be uppercase letters.
The second prompt asks if there can be lowercase letters.
The third prompt asks if there can be numbers.
The fourth prompt asks if there can be special characters.
The total list of valid characters if the user says "YES" to all prompts:
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~`!@#$%^&*()_-+={}[]|:;"<,>.?/
See the "Screen Shots" folder for images of the completed application