Password Generator App This is a simple password generator application built with React. It allows users to generate random passwords based on specified criteria such as length, inclusion of numbers, and special characters.
Features Generate random passwords of variable length. Include or exclude numbers and special characters in the generated passwords. Copy generated passwords to the clipboard with a single click. Technologies Used React Tailwind CSS (for styling) Getting Started To get a local copy up and running follow these simple steps:
Prerequisites Make sure you have Node.js and npm (or yarn) installed on your computer.
Installation Clone the repository:
bash Copy code git clone https://github.com/OmH3/PasswordGenerator.git cd password-generator-app Install dependencies:
bash Copy code npm install
yarn install Start the development server:
bash Copy code npm start
yarn start Open your browser and navigate to http://localhost:3000 to view the app.
Usage Adjust the password length using the slider. Check/uncheck the "Numbers" and "Character" checkboxes to include/exclude them in the generated passwords. Click the "copy" button next to the generated password to copy it to your clipboard.