templates/flashes.html.twig line 1
<div class="container"><div class="row">{# Success should be always on the top @https://aqarmap.atlassian.net/browse/CON-1561 #}{% for label, flashes in app.flashes(['success']) %}{% for flash in flashes %}<div class="alert alert-{{ label }} alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>{{ flash | raw }}</div>{% endfor %}{% endfor %}{% for label, flashes in app.flashes(['warning', 'error', 'notice', 'danger', 'info']) %}{% for flash in flashes %}<div class="alert alert-{{ label }} alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>{{ flash | raw }}</div>{% endfor %}{% endfor %}{% if notifyLogo or notifyPersonalPhoto %}{% include "logo-znn.html.twig" %}{% endif %}{% if notifyExpiry %}{% include "expiry-znn.html.twig" %}{% endif %}{% if notifyPersonalIsNotCompleted %}{% include "personalInfoZnn.html.twig" %}{% endif %}</div></div>