{% extends 'base.html.twig' %}
{% block title %}Contact{% endblock %}
{% block body %}
<br><br>
<p class="contact">Me contacter</p>
<br><br>
<section class="container" style="color:rgb(44, 68, 119); text-align: center; font-size: 20px; background-color: rgb(231, 231, 231); border-radius: 10px; font-family: 'Yanone Kaffeesatz', sans-serif; padding: 50px; border: 2mm ridge rgb(192, 192, 192);">{{form(myForm)}}
{% for message in app.flashes ('success') %}
<div class='alert alert-success mt-3'>
{{message}}
</div>
{% endfor %}
</section>
{% endblock %}