quinone / password-manager

Password management application developed as a group project for college.
0 stars 0 forks source link

Create a base template that all other templates can inherit #26

Closed quinone closed 1 month ago

quinone commented 1 month ago

Create a base.html file

This file will contain the basic navigation menu:

For authenticated users:

  1. vault link
  2. log out link
  3. password generator link
  4. add new item link

Using Bootstrap

Download and install Bootstrap This will allow us to get basic CSS and JS up and running.

add {% extends 'bootstrap/base.html' %} to base.html

and

add {% extends 'base.html' %} to the top of ever other template

quinone commented 1 month ago

Its mostly complete now. I didn't change files like test.html, encryption helper, mypreferences and settings. I have not added bootstrap yet either

quinone commented 1 month ago

Bootstrap is added along with inherited nav bar.