summaryrefslogtreecommitdiff
path: root/webui/website/auth.py
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2023-05-11 02:18:29 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2023-05-11 02:18:29 +0530
commit4a30205c7c2ca5dee773bc41f0cce448c98ad72f (patch)
treea8413ccea2bf88fbc7e1001410ecb9e7e7e9d722 /webui/website/auth.py
parentb7fb654b5257d8fc753b202c3639e94da7d1af20 (diff)
webui: flask dump
Diffstat (limited to 'webui/website/auth.py')
-rw-r--r--webui/website/auth.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/webui/website/auth.py b/webui/website/auth.py
new file mode 100644
index 0000000..c44b421
--- /dev/null
+++ b/webui/website/auth.py
@@ -0,0 +1,15 @@
+from flask import Blueprint, render_template
+
+auth = Blueprint('auth', __name__)
+
+@auth.route('/login')
+def login():
+ return render_template("404.html")
+
+@auth.route('/logout')
+def logout():
+ return render_template("404.html")
+
+@auth.route('/signup')
+def signup():
+ return render_template("404.html") \ No newline at end of file