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, 0 insertions, 15 deletions
diff --git a/webui/website/auth.py b/webui/website/auth.py
deleted file mode 100644
index c44b421..0000000
--- a/webui/website/auth.py
+++ /dev/null
@@ -1,15 +0,0 @@
-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