https://github.com/mdashraful305/password-generator
This is a simple password generator
https://github.com/mdashraful305/password-generator
bootstrap css html javascript jquery js password-generator
Last synced: about 1 month ago
JSON representation
This is a simple password generator
- Host: GitHub
- URL: https://github.com/mdashraful305/password-generator
- Owner: mdashraful305
- Created: 2023-04-30T08:51:52.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T14:06:11.000Z (about 2 years ago)
- Last Synced: 2025-02-08T01:33:27.122Z (3 months ago)
- Topics: bootstrap, css, html, javascript, jquery, js, password-generator
- Language: JavaScript
- Homepage: https://mdashraful305.github.io/Password-Generator/
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Password Generator
This is a simple password generator web application built with HTML, CSS, and JavaScript. It allows the user to generate a random password of a specified length and with selected character types (uppercase letters, lowercase letters, numbers, and symbols).
## Live Preview
```bash
https://mdashraful305.github.io/Password-Generator/
```## Installation
No installation is required. Simply open the `index.html` file in a web browser to use the password generator.
## Usage
To generate a password, select the desired length of the password (between 8 and 128 characters) and the desired character types (by checking the corresponding checkboxes). Then click the "Generate Password" button to generate a password.
To copy the generated password to the clipboard, click the "Copy" button.
## Development
This project was developed using HTML, CSS, and JavaScript. The password generation logic is implemented in the `generatePassword` function in the `script.js` file. The `copyToClipboard` function handles copying the generated password to the clipboard.