Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.01 KB

Password Manager Website

  • Html
  • CSS
  • Django
  • Python

Currently, it uses the master account password to encrypt the stored passwords twice. Even in the event of a large data breach in production, where all passwords are leaked, the passwords would still be very secure.

The navbar adapts to whether the user is logged in or not

How the project behaves:

How to set up project (Windows CMD)

clone the project
git clone https://github.com/ShaneWD/PasswordManagerWebsite.git
change directories into the project
cd PasswordManagerWebsite
install the necessary python packages
pip install requirements.txt
setup SQLite database
python manage.py migrate
start the test server
python manage.py runserver