diff --git a/auth.py b/auth.py index c0263cf..bc7725e 100644 --- a/auth.py +++ b/auth.py @@ -24,6 +24,9 @@ def get_session(request): return sessioninfo[0] + (sessionid,) +def check_pw(uid, password): + pass + @app.route("/auth/headerbar") def headerbar(): sessioninfo = get_session(request) diff --git a/main.py b/main.py index 40dac4a..9c935ee 100644 --- a/main.py +++ b/main.py @@ -20,11 +20,9 @@ def timestamp_filter(value): except: return value -# import sendmail import auth -# import dbcontroll -# import imageupload import entry +import user @app.route("/") def template(): diff --git a/static/css/main.scss b/static/css/main.scss index 1644b51..61fc4be 100644 --- a/static/css/main.scss +++ b/static/css/main.scss @@ -72,14 +72,6 @@ hr { display: flex; flex-direction: row; justify-content: space-between; - - // .headerbar-left { - // background-color: red; - // } - - // .headerbar-right { - // background-color: green; - // } } diff --git a/templates/auth/headerbar.html b/templates/auth/headerbar.html index 19e16d9..3077ab1 100644 --- a/templates/auth/headerbar.html +++ b/templates/auth/headerbar.html @@ -1,7 +1,7 @@