This is a HTML, CSS and JavaScript code that generates a random password based on user input. The user is prompted to enter the number of characters they want in their password between 10 and 64 characters, and to choose which types of characters they want to include (special characters, numbers, lowercase letters and/or uppercase letters).
This source code is available to everyone under the standard MIT license.
Deployed website: https://antonscheving.github.io/Password-Generator/

Screenshot - Password Generator User Interface
A web browser is required to run this code.
- When the user clicks on the 'Generate Password' button the user is prompted to enter the number of characters they want in their password, and is asked to choose a number between 10 and 64.
- The user is prompted to confirm if they want to include special characters in their password.
- The user is prompted to confirm if they want to include numbers in their password.
- The user is prompted to confirm if they want to include lowercase letters in their password.
- The user is prompted to confirm if they want to include uppercase letters in their password.
- When the user has selected all the criteria the code generates a random password using the user's choices and the length of the password.
- The code then displays the generated password in the browser.
Between each password generation, you need to refresh the browser to reset the functions. Otherwise, the prompts won't take into account what type of characters you want to include or exclude from the randomly generated password.
Front-end web developer: Anton Scheving
This password generator code allows users to create a strong and complex password that meets their desired length and character type requirements, making it a useful tool for personal use or for any application that requires password creation.
MIT License
Copyright (c) 2023 Anton Scheving
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
© 2023 Confidential and Proprietary. All Rights Reserved.