This project is a password generator using HTML, CSS, and JavaScript. It allows users to generate secure passwords based on specified criteria, providing a convenient way to create strong passwords.
- Choose a password length between 8-30 characters.
- Include uppercase letters, lowercase letters, numbers, and special characters.
- Responsive design for optimal viewing on any device.
- Installable as a Progressive Web App (PWA) for offline use.
No traditional installation required! Just follow this link to use the application.
- Click the "Generate Password" button.
- Follow the prompts to specify your password criteria.
- Your new random password will be generated and displayed.
- Open the application in your browser.
- Click on the install button in the address bar (typically appears as a "+" icon).
- Follow the prompts to add the app to your home screen or desktop.
Here is the manifest.json
configuration for the PWA:
{
"name": "Password Generator",
"short_name": "PassGen",
"description": "A secure password generator with strength meter",
"start_url": "/",
"display": "standalone",
"background_color": "#111827",
"theme_color": "#111827",
"icons": [
{
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
Contributions are welcome! If you have suggestions for improvements, please fork the repository and create a pull request. You can also open an issue with your ideas.
This application is licensed under the MIT License. See the LICENSE file for more information.
If you have any questions, feel free to contact me:
- Email: [email protected]
- GitHub: cykj40
You can update your README file with the above content for better clarity and structure.