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-reactnpm installnpm startApp 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)