templates/contact/index.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Contact{% endblock %}
{% form_theme contact_form 'bootstrap_5_layout.html.twig' %}
{% block body %}
{#<div class="main-content p-5">#}
<div class="mt-5 p-5 col-md-6 offset-md-3">
{# <h3>The author has the following errors</h3>
<ul>
{% for error in errors %}
<li>{{ error.message }}</li>
{% endfor %}
</ul>#}
{# afficher les msg flash qui disparaissent au fur & à mesure #}
{% for msg in app.flashes('confirmation') %}
<div class="alert alert-success">
{{ msg }}
</div>
{% endfor %}
{{ form(contact_form, {attr: {'novalidate': 'novalidate'}}) }}
</div>
{% endblock %}