templates/general/contact.html.twig line 1

Open in your IDE?
  1. {#
  2. /*
  3. * Ce fichier est la propriété de l'association (c) Projets Métiers
  4. *
  5. * (c) crée par Jean-Marc CATALA <jeanmmarccatala@gmail.com>
  6. *
  7. */
  8. #}
  9. {% extends 'basepm.html.twig' %}
  10. {% block body %}
  11. <style>
  12. .btn-primary {
  13. background-color: #034055;
  14. font-weight: bold;
  15. color: #e5e9ec;
  16. text-align: center;
  17. text-decoration: none;
  18. display: inline-block;
  19. cursor: pointer;
  20. border-radius: 12px;
  21. border: 2px solid #034055;
  22. font-family: 'OdibeeSansRegular', sans-serif;
  23. font-size: 32px;
  24. width: 100%;
  25. padding: 5px;
  26. }
  27. .btn-primary:hover{
  28. background-color: #e5e9ec;
  29. color: #034055;
  30. border: 2px solid #034055;
  31. text-decoration: none;
  32. }
  33. </style>
  34. <div class="fushbandeau">
  35. <div>
  36. <div class="bloc colon12Marge2">
  37. <div class="container-sm bottomJM ">
  38. <h1 class="txtRouges centrer">Nous contacter</h1>
  39. <br>
  40. {% for message in app.flashes('success') %}
  41. <div class="alert alert-success">
  42. {{ message }}
  43. </div>
  44. {% endfor %}
  45. <div class="containerContact lightGrey shadowJm">
  46. {{ form_start(form) }}
  47. {{ form_widget(form) }}
  48. {{ form_end(form) }}
  49. </div>
  50. {% for message in app.flashes('success') %}
  51. <div class="alert alert-success">
  52. {{ message }}
  53. </div>
  54. {% endfor %}
  55. </div>
  56. </div>
  57. <br>
  58. <br>
  59. <div>
  60. {% block footer %}
  61. <div class="full couleurFond">
  62. </div>
  63. {% endblock %}
  64. {% endblock %}