diff --git a/login_page.html b/login_page.html new file mode 100644 index 0000000..1ae3595 --- /dev/null +++ b/login_page.html @@ -0,0 +1,11 @@ + + + + + + Login Page + + + + + \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 6bd975a..6d657b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,10 +2,10 @@ blinker==1.9.0 click==8.1.8 colorama==0.4.6 Flask==3.1.0 +Flask-Login==0.6.3 Flask-WTF==1.2.2 itsdangerous==2.2.0 Jinja2==3.1.6 MarkupSafe==3.0.2 -pillow==11.0.0 Werkzeug==3.1.3 WTForms==3.2.1 diff --git a/templates/dashboard.html b/templates/dashboard.html new file mode 100644 index 0000000..bdb612a --- /dev/null +++ b/templates/dashboard.html @@ -0,0 +1,14 @@ + + + + + + + Dashboard + + + + + + + \ No newline at end of file diff --git a/templates/navbar_base.html b/templates/navbar_base.html new file mode 100644 index 0000000..e7e3f59 --- /dev/null +++ b/templates/navbar_base.html @@ -0,0 +1,14 @@ + + + + + + + Default + + + + + + + \ No newline at end of file