Optimized login procedure

This commit is contained in:
Kevin Frantz
2018-09-06 16:52:20 +02:00
parent 0c689194a2
commit ecd6bfaac1
4 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
{% extends "base.html.twig" %}
{% block body %}
{% include 'frames/structure/navbar.html.twig'%}
{% include 'frames/structure/message/flash_messages.html.twig'%}
<br />
<div class="container">
{% block content %}

View File

@@ -0,0 +1,5 @@
{% for message in app.flashes('notice') %}
<div class="flash-notice">
{{ message }}
</div>
{% endfor %}