|
@@ -27,6 +27,15 @@
|
|
|
|
|
|
<h1 class="text-center mt-2"> Welcome to {{ title }} ! </h1>
|
|
|
|
|
|
+<section class="container mt-2 mb-2">
|
|
|
+{% for message in get_flashed_messages() %}
|
|
|
+ <div class="alert alert-info">
|
|
|
+ <button type="button" class="close" data-dismiss="alert">×</button>
|
|
|
+ {{ message }}
|
|
|
+ </div>
|
|
|
+{% endfor %}
|
|
|
+</section>
|
|
|
+
|
|
|
{% block body %} {% endblock %}
|
|
|
|
|
|
{% block javascript %}
|