{% for message in app.flashes('sucess') %} <div class="notification bg-success"> <a href="#"><i class="fa fa-times close-notification"></i></a> - {{ message }}<br> </div>{% endfor %}{% for message in app.flashes('error') %} <div class="notification bg-danger"> <a href="#"><i class="fa fa-times close-notification"></i></a> - {{ message }}<br> </div>{% endfor %}