summaryrefslogtreecommitdiffstats
path: root/accounts/templates/base.html
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb@kaidan.im>2024-04-03 00:52:46 +0200
committerJonah BrĂ¼chert <jbb@kaidan.im>2024-04-03 00:52:46 +0200
commitb4ed28d6c80fea63492e51b62fcfa847322eb6c0 (patch)
tree453318497b158c7dff88721d314c7b1ebc9c9ab4 /accounts/templates/base.html
parent27b8fffe81be92f1ad004578621dacde999acf69 (diff)
downloadweb-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.tar.gz
web-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.tar.bz2
web-b4ed28d6c80fea63492e51b62fcfa847322eb6c0.zip
Use bootstrap for flash messages
Diffstat (limited to 'accounts/templates/base.html')
-rw-r--r--accounts/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/templates/base.html b/accounts/templates/base.html
index 10c146e..02c0a08 100644
--- a/accounts/templates/base.html
+++ b/accounts/templates/base.html
@@ -55,7 +55,7 @@
{% if messages %}
<ul class="flashes">
{% for category, message in messages %}
- <li class="{{ category }}">{{ message }}</li>
+ <li class="alert {{ category }}">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}