Software developer and machine learning enthusiast
19 August 2019
This is a simple single-page password generator made with HTML, CSS, and Javascript.
It features an intuitive interface that allows the user to select the length of password generated, as well as if the password is allowed to contain uppercase letters, lowercase letters, numbers, or symbols. Once the user clicks the Generate Password button the password appears in the text box and the user is able to copy it to their clipboard with a single click.
I made this after seeing a video by Brad Traversy about one of Florin Pop’s 100days100projects projects - a password generator.
In the above versions, you have the following pattern: lowercase, uppercase, number, symbol. My version does not have this pattern, instead, the type of each character is chosen randomly and then a random character of that type is drawn. This means that my version creates a slightly stronger password for the given length.