summaryrefslogtreecommitdiff
path: root/webui/website/auth.py
diff options
context:
space:
mode:
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