diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:44:20 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:44:20 +0530 |
commit | 063b7dffebfaaa99bca9bc1ec9e3293cb33188b4 (patch) | |
tree | d10d01f9e2ff5f5c84742989536cd327cfa011b6 /app/views/auth.py | |
parent | 1944f9d65dfe2fe566d669c265cf4cd0d03ccf8d (diff) |
addde message template and 401 handler
Diffstat (limited to 'app/views/auth.py')
-rw-r--r-- | app/views/auth.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/auth.py b/app/views/auth.py index a915cf4..1d1cafb 100644 --- a/app/views/auth.py +++ b/app/views/auth.py @@ -42,12 +42,16 @@ def signin_user(): flash_errors(form) return render_template("auth/signin.html",form=form) -@flask_login.login_required @app.route("/dashboard") +@flask_login.login_required def user_dashboard(): return render_template("dashboard.html",user=flask_login.current_user) @app.route('/logout') def logout(): flask_login.logout_user() - return 'Logged out' + return render_template("message.html",message="You have been logged out.") + +@login_manager.unauthorized_handler +def unauthorized(): + return render_template("message.html",message="You need to be logged in to access this resource", code=401) |