templates/contact/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Contact{% endblock %}
  3. {% form_theme contact_form 'bootstrap_5_layout.html.twig' %}
  4. {% block body %}
  5.     {#<div class="main-content p-5">#}
  6.     <div class="mt-5 p-5 col-md-6 offset-md-3">
  7.         {# <h3>The author has the following errors</h3>
  8.         <ul>
  9.             {% for error in errors %}
  10.                 <li>{{ error.message }}</li>
  11.             {% endfor %}
  12.         </ul>#}
  13.         {# afficher les msg flash qui disparaissent au fur & à mesure #}
  14.         {% for msg in app.flashes('confirmation') %}
  15.             <div class="alert alert-success">
  16.                 {{ msg }}
  17.             </div>
  18.         {% endfor %}
  19.         {{ form(contact_form, {attr: {'novalidate': 'novalidate'}}) }}
  20.     </div>
  21. {% endblock %}