Notify not verified
This commit is contained in:
parent
1b4128cd09
commit
92c683eb51
2 changed files with 10 additions and 0 deletions
|
@ -3,6 +3,11 @@
|
|||
{% block title %}User{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% for message in app.flashes('error') %}
|
||||
<div class="alert alert-danger" role="alert">
|
||||
{{ message }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for message in app.flashes('success') %}
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ message }}
|
||||
|
|
Reference in a new issue