A simple and elegant password manager built using React. Easily store, display, and manage your password and username.
- 📥 Save passwords (site name, email/username, and password)
- 📋 Display saved passwords below the form
- 🗑️ Delete individual entries
- ✨ Clean and responsive UI with styled components and CSS
- React.js
- CSS (for styling)
git clone https://github.com/shwetap3000/Password-Manager.git
cd password-manager-react
npm install
npm start
App will run on http://localhost:3000
- Enter website/app name, username/email, and password in the form.
- Click Save to store the password locally.
- View your saved passwords listed below.
- Use the Delete button to remove any entry.
- This app does not use a backend — all data is stored in the browser's
localStorage
. - Ideal for learning or prototyping — not meant for production usage or real credentials.
password-manager-react/
├── node_modules/
├── public/
│ ├── index.html
│ ├── manifest.json
│ └── robots.txt
├── src/
│ ├── components/
│ │ ├── PasswordForm.js
│ │ └── PasswordList.js
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── index.css
│ ├── index.js
│ ├── reportWebVitals.js
│ └── setupTests.js
├── .gitignore
├── package-lock.json
├── package.json
└── README.md
- Sweta Prasad (SY B.Tech Computer Engineering Student)