templates/contact/contact.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block layout %}
  3.     <div class="row" style="display:block; padding-left:40px">
  4.         <h2 style="text-align: center">
  5.             <strong>
  6.                 Contactez nous
  7.             </strong>
  8.         </h2>
  9.         <br />
  10.         <p>
  11.             <i>
  12.                 Vous avez une question, écrivez nous ! (Vous pouvez laisser un email Valide si vous souhaitez qu'on vous réponde)
  13.             </i>
  14.         </p>
  15.         <br />
  16.     </div>
  17.     <div class="row" style="display:block; padding-left:40px">
  18.         {% for message in app.flashes('success') %}
  19.             <div class="alert alert-success" style="width:50%">
  20.                 {{ message }}
  21.             </div>
  22.         {% endfor %}
  23.         <div class="col-8">
  24.             {{ form(form) }}
  25.         </div>
  26.     </div>
  27. {% endblock %}
  28. {% block stylesheets %}
  29.     {{ parent() }}
  30.     <style>
  31.         @media screen and (max-width: 1000px) {
  32.             #contact_pseudo, #contact_title, #contact_emailFrom, #contact_Content {
  33.                 font-size:50px
  34.             }
  35.         }
  36.     </style>
  37. {% endblock %}