This project concerns using JavaScript to generate a random password based on certain criterias that are defined by the user via the use of prompts
The criteria are:
- Length of password
- Whether the user would like capital letters in the password
- Whether the user would like lowercase letters in the password
- Whether the user would like numbers in the password
- Whether the user would like special characters in the password
When the user is presented with a "Generate Password" button. When clicked, a prompt will begin asking the user which criteria they would like to include in the password
After the user selects the desired criteria they would like to include, the randomly generated password is displaye on the screen with the outlined box.