diff options
author | Frederick Muriuki Muriithi | 2025-04-05 09:21:56 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-04-05 09:27:00 -0500 |
commit | b7304bbd9d09f9692a9c4a3f1bd0be3e59cbb4b7 (patch) | |
tree | 47d526af6380ad64af4edfba3038b2939ad5956b /uploader/authorisation.py | |
parent | d84a0acd6f80267de20575966149d074f10ad862 (diff) | |
download | gn-uploader-b7304bbd9d09f9692a9c4a3f1bd0be3e59cbb4b7.tar.gz |
Add base "alert" class for alerts for bootstrap 5.
Diffstat (limited to 'uploader/authorisation.py')
-rw-r--r-- | uploader/authorisation.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uploader/authorisation.py b/uploader/authorisation.py index a283980..313bc38 100644 --- a/uploader/authorisation.py +++ b/uploader/authorisation.py @@ -19,6 +19,7 @@ def require_login(function): def __clear_session__(_no_token): session.clear_session_info() flash("You need to be signed in.", "alert-danger big-alert") + flash("You need to be signed in.", "alert alert-danger big-alert") return redirect("/") return session.user_token().either( |