Password Generator
This repository provides two versions of a password generator:
-
PHP Version: Implemented using PHP, this password generator generates random passwords of specified length using a combination of lowercase letters, uppercase letters, numbers, and special characters.
-
Python Version Implemented using Python with the Flask web framework, this password generator generates random passwords of fixed length (12 characters) using a combination of lowercase letters, uppercase letters, numbers, and special characters.
PHP Version
- Clone the repository or download the PHP file (
index.php
) to your local machine - Open a web browser and navigate to the URL where the PHP file is hosted (
http://localhost/index.php
). - You should see the password generator form click the "Generate Password" button.
- The generated password will be displayed in the text box.
- Clone the repository or download the Python file (
app.py
) to your local machine. - Install Flask if you haven't already. You can install it using pip:
- Open a terminal or command prompt and navigate to the directory where the Python file is located.
- Run the Flask application by executing the following command: python app.py