The goal of this app is to help users create passwords for websites that need to meet specific criteria. Using starter code I have added JavaScript to this application to generate complex or not so complex passwords. When using this application the user will go through a series of prompts and selecting "OK" will confirm you would like the specific character and selecting "Cancel" is essentially saying no thank you to the specific character.
no installation needed.
Simply visit: https://bucket12.github.io/Password-Generator/ and click the "Generate Password" button. Next, begin using the prompts to create your password. By the end of the prompts, a password meeting your selected criteria should populate in the "Your Secure Password" field. Should the user enter criteria that is not permissable; prompts will be displayed to alert the user of the specific issue.
- Starter Code Xandromus: https://github.com/coding-boot-camp/friendly-parakeet.git
- Prompt/Alert: https://developer.mozilla.org/en-US/docs/Web/API/Window/prompt
- Confirm: https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm
- Math.floor: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor
- Math.Random: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random
N/A
- Can create Passwords from legth of 8 characters to 128 characters.
- Can generate passwords using special characters such as "*" and "@".
- Can generate passwords using a combination of uppercase, lowercase, numbers and special characters.
- Will alert user if they have entered a number lower than 8 or higher than 128
- Will alert user if the use a special character or letter in the first length prompt.