Add missing templates

This commit is contained in:
Edward Betts 2022-04-08 10:46:59 +01:00
parent 377d7f7af7
commit 82b0405ab7
2 changed files with 48 additions and 0 deletions

12
templates/flash_msg.html Normal file
View file

@ -0,0 +1,12 @@
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}