templates/front/contact.html.twig line 1

Open in your IDE?
  1. {% extends 'front.html.twig' %}
  2. {% block title %}Nous contacter | CIMEF-INTERNATIONAL{% endblock %}
  3. {% block styleSheets %}
  4. <style id='wp-emoji-styles-inline-css' type='text/css'>
  5. label{
  6.     font-family: arial;
  7. }
  8. .form-control{
  9.     width:100%;
  10.     height:50px;
  11.     padding:10px;
  12.     margin: 10px;
  13.     color: #ededed;
  14.     font-family: arial;
  15.     margin-bottom: 10px;
  16.     background-color: #EFEFEF !important;
  17. }
  18. .textarea{
  19.     width:100%;
  20.     height:50px;
  21.     padding:10px;
  22.     color: #ededed;
  23.     font-family: arial;
  24.     background-color: #EFEFEF;
  25.     height: 100px !important;
  26. }
  27. .row {
  28.     display: flex;            /* flexbox pour aligner les colonnes */
  29.     flex-wrap: wrap;          /* les colonnes passent à la ligne si nécessaire */
  30.     margin-right: -0.75rem;   /* -gutter/2 */
  31.     margin-left: -0.75rem;    /* -gutter/2 */
  32. }
  33. /* Small devices ≥576px */
  34. @media (min-width: 576px) {
  35.   .col-3 { flex: 0 0 100%; max-width: 100%; }
  36.   .col-sm-4 { flex: 0 0 100%; max-width: 100%; }
  37.   .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
  38.   .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  39. }
  40. /* Medium devices ≥768px */
  41. @media (min-width: 768px) {
  42.   .col-md-3 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  43.   .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  44.   .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  45.   .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  46. }
  47. /* Large devices ≥992px */
  48. @media (min-width: 992px) {
  49.   .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  50.   .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  51.   .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  52.   .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  53. }
  54. .title{
  55.     font-family: arial;
  56.     font-weight: bolder;
  57.     font-size: 18px !important;
  58.     text-transform: uppercase !important;
  59. }
  60. .wrap_header_banner .overlay-slider {
  61.     position: absolute;
  62.     top: 0;
  63.     left: 0;
  64.     padding-top: 30px; 
  65.     width: 100%;
  66.     height: 100%;
  67.     background-color: rgba(0, 0, 0, 0.6392156863);
  68. }
  69. .card_centre{
  70.     /*border: 1px solid #ededed;*/
  71.     border-radius: 5px; 
  72.     margin: 10px;
  73.     border: 1px solid #ededed;
  74. }
  75. .card_centre:hover{
  76.     /*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
  77. }
  78. .text-center{
  79.     text-align: center;
  80.     padding: 10px;
  81.     margin-top: -10px;
  82. }
  83. .titre-formation{
  84.     font-weight: bold; 
  85.     font-size: 16px !important; 
  86.     font-family: arial; 
  87.     color: #051a53;
  88. }
  89. /*# sourceURL=wp-emoji-styles-inline-css */
  90. </style>
  91. {% endblock %}
  92. {% block body %}
  93. {% include 'section/navbar.html.twig' %}
  94. <div class="wrap_header_banner" style="height: 200px; background: url({{ asset('public/inter/wp-content/uploads/2023/06/header-banner.jpg')}});">
  95.     <div class="overlay-slider">
  96.         <div class="row_site">
  97.             <div class="container_site">
  98.                 <div class="cover_color"></div>
  99.                 <div class="header_banner_el">
  100.                     <div class="header_breadcrumbs">
  101.                         <div id="breadcrumbs">
  102.                         <ul class="breadcrumb">
  103.                             <li><a href="{{ path('front.inter.index') }}" style="color: #fff!important;" title="accueil">Accueil</a></li>
  104.                             <li class="li_separator"><span class="separator"><i class="ovaicon-next" style="color: #fff!important;"></i></span></li>
  105.                             <li style="color: #fff!important;">Nous contacter</li>
  106.                         </ul>
  107.                         </div>
  108.                     </div>
  109.                     <h1 class="header_title" style="color: #fff!important;">Nous contacter </h1>
  110.                 </div>
  111.             </div>
  112.         </div>
  113.     </div>
  114. </div>
  115.     {% for message in app.flashes('success') %}
  116.     <div class="row toast_success" style="top: 100px !important; float: right !important; position: absolute;">
  117.         <div class="col-md-2 col-sm-2" style="padding: 10px;">
  118.             <i class="fa fa-check fa-2x" aria-hidden="true"></i>
  119.         </div>
  120.         <div class="col-md-10 col-sm-10" style="padding: 10px;">
  121.             <label>{{ message }}</label>
  122.         </div>
  123.     </div>    
  124.     {% endfor %}
  125.     {% for message in app.flashes('warning') %}
  126.     <div class="row toast_warning" style="top: 100px !important; float: right !important; position: absolute;">
  127.         <div class="col-md-2 col-sm-2" style="padding: 10px;">
  128.             <i class="fa fa-check fa-2x" aria-hidden="true"></i>
  129.         </div>
  130.         <div class="col-md-10 col-sm-10" style="padding: 10px;">
  131.             <label>{{ message }}</label>
  132.         </div>
  133.     </div>   
  134.     {% endfor %}
  135.     {% for message in app.flashes('danger') %}
  136.     <div class="row toast_danger" style="top: 100px !important; float: right !important; position: absolute;">
  137.         <div class="col-md-2 col-sm-2" style="padding: 10px;">
  138.             <i class="fa fa-check fa-2x" aria-hidden="true"></i>
  139.         </div>
  140.         <div class="col-md-10 col-sm-10" style="padding: 10px;">
  141.             <label>{{ message }}</label>
  142.         </div>
  143.     </div>   
  144.     {% endfor %}
  145.     
  146. <div data-elementor-type="wp-page" data-elementor-id="21" class="elementor elementor-21">
  147.     <!-- SECTION : TITRE + TEXTE -->
  148.     <section style="margin: 50px;" class="elementor-section elementor-top-section elementor-element elementor-element-7da5059 elementor-section-boxed elementor-section-height-default">
  149.         <div class="elementor-container elementor-column-gap-default">
  150.             <!-- COLONNE GAUCHE -->
  151.             <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f594441">
  152.                 <div class="elementor-widget-wrap elementor-element-populated">
  153.                     <div class="elementor-element elementor-element-f1ef5a6 elementor-widget elementor-widget-gimont_elementor_heading">
  154.                         <div class="elementor-widget-container">
  155.                             <div class="ova-heading template_1">
  156.                                 <span class="line"></span>
  157.                                 <span class="subtitle">Contactez-nous</span>
  158.                                 <h1 style="fon-size: 30px!important; fon-weight: bolder; font-family: arial;">
  159.                                     N'hésitez pas à nous contacter<br>
  160.                                     avec l'équipe
  161.                                 </h1>
  162.                             </div>
  163.                         </div>
  164.                     </div>
  165.                 </div>
  166.             </div>
  167.             <!-- COLONNE DROITE -->
  168.             <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d012f81">
  169.                 <div class="elementor-widget-wrap elementor-element-populated">
  170.                     <div class="elementor-element elementor-element-a9f97fe elementor-widget elementor-widget-text-editor">
  171.                         <div class="elementor-widget-container">
  172.                             <p>
  173.                                 Une question, un besoin ou un projet ? Notre équipe est à votre écoute. Contactez-nous via ce formulaire et nous vous répondrons dans les plus brefs délais.
  174.                             </p>
  175.                         </div>
  176.                     </div>
  177.                 </div>
  178.             </div>
  179.         </div>
  180.     </section>
  181.     <!-- SECTION : INFOS CONTACT + FORMULAIRE -->
  182.     <section style="margin: 50px;"  class="elementor-section elementor-top-section elementor-element elementor-element-7d17241 elementor-section-boxed elementor-section-height-default">
  183.         <div class="elementor-container elementor-column-gap-default">
  184.             <!-- INFOS CONTACT -->
  185.             <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1462951">
  186.                 <div class="elementor-widget-wrap elementor-element-populated">
  187.                     <div class="elementor-element elementor-element-01a58e2 elementor-widget elementor-widget-gimont_elementor_contact_info">
  188.                         <div class="elementor-widget-container">
  189.                             <div class="ova-contact-info template_1">
  190.                                 <!-- TELEPHONE -->
  191.                                 <div class="item">
  192.                                     <div class="icon">
  193.                                         <i class="gimonticon gimonticon-phone-call"></i>
  194.                                     </div>
  195.                                     <div class="info">
  196.                                         <span class="label">Vous avez des questions ?</span>
  197.                                         <h3 class="text">
  198.                                             <a href="tel:+230009850" target="_blank">
  199.                                                 +33 175 43 42 83
  200.                                             </a>
  201.                                         </h3>
  202.                                     </div>
  203.                                 </div>
  204.                                 <!-- EMAIL -->
  205.                                 <div class="item">
  206.                                     <div class="icon">
  207.                                         <i class="ovaicon ovaicon-email"></i>
  208.                                     </div>
  209.                                     <div class="info">
  210.                                         <span class="label">Écrire un e-mail</span>
  211.                                         <h3 class="text">
  212.                                             <a href="/cdn-cgi/l/email-protection#" target="_blank">
  213.                                                 <span class="__cf_email__" style="font-weight: bolder !important;">paris@cimef-international.org</span>
  214.                                                 <span class="__cf_email__">cimef@cimef-international.org</span>
  215.                                             </a>
  216.                                         </h3>
  217.                                     </div>
  218.                                 </div>
  219.                                 <!-- ADRESSE -->
  220.                                 <div class="item">
  221.                                     <div class="icon">
  222.                                         <i class="gimonticon gimonticon-location"></i>
  223.                                     </div>
  224.                                     <div class="info">
  225.                                         <span class="label">Visitez à tout moment</span>
  226.                                         <h3 class="text">
  227.                                             <a href="https://goo.gl/maps/DP8ugG7n1aHTdAt89" target="_blank">
  228.                                             Immeuble BERCY REFLETS, 8-12 Av. du Général de Gaulle, 94220 Charenton-le-Pont, France    
  229.                                             </a>
  230.                                         </h3>
  231.                                     </div>
  232.                                 </div>
  233.                             </div>
  234.                         </div>
  235.                     </div>
  236.                 </div>
  237.             </div>
  238.             <!-- FORMULAIRE -->
  239.             <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-a10971d"data-id="a10971d"data-element_type="column">
  240.                 <div class="elementor-widget-wrap elementor-element-populated">
  241.                     <div class="elementor-element elementor-element-9bc674e elementor-widget elementor-widget-shortcode" data-id="9bc674e" data-element_type="widget" data-widget_type="shortcode.default">
  242.             
  243.                         <div class="elementor-widget-container">
  244.                             <div class="elementor-shortcode">
  245.             
  246.                                 <div class="wpcf7">
  247.                                     {{ form_start(contactForm) }}
  248.                                     <div class="row">
  249.                                         <div class="col-md-6 col-sm-12" style="padding-right: 10px;">
  250.                                             {{ form_row(contactForm.nom) }}
  251.                                         </div>
  252.                                         <div class="col-md-6 col-sm-12" style="padding-left: 10px;">
  253.                                             {{ form_row(contactForm.email) }}
  254.                                         </div>
  255.                                         <div class="col-md-12 col-sm-12">
  256.                                             {{ form_row(contactForm.sujet) }}
  257.                                         </div>
  258.                                         
  259.                                         <div class="col-md-12 col-sm-12">
  260.                                             {{ form_row(contactForm.message) }}
  261.                                         </div>
  262.                                         <div style="margin: 10px !important;" class="g-recaptcha" data-sitekey="6LfPYkosAAAAANaQq5rVy_x44wv122vknRu-sw3C"></div>
  263.                                     </div>
  264.                                     
  265.                                     {{ form_end(contactForm) }}
  266.                                 </div>
  267.                             </div>
  268.                         </div>
  269.                     </div>
  270.                 </div>
  271.             </div>
  272.         </div>
  273.     </section>
  274.     <!-- SECTION : GOOGLE MAP -->
  275.     <section class="elementor-section elementor-top-section elementor-element elementor-element-4c3e25a elementor-section-full_width elementor-section-height-default">
  276.         <div class="elementor-container elementor-column-gap-no">
  277.             <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2eef69e">
  278.                 <div class="elementor-widget-wrap elementor-element-populated">
  279.                     <div class="elementor-element elementor-element-885fdac elementor-widget elementor-widget-google_maps">
  280.                         <div class="elementor-widget-container">
  281.                             <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29520047.273509588!2d-22.386378350634295!3d25.42082644415092!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47e66e404159de73%3A0xd0d7e47ebb959b3c!2sCIMEF%20INTERNATIONAL%20FRANCE!5e0!3m2!1sfr!2sci!4v1768377665659!5m2!1sfr!2sci" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  282.                         </div>
  283.                     </div>
  284.                 </div>
  285.             </div>
  286.         </div>
  287.     </section>
  288. </div>
  289.    {% include 'section/footer.html.twig' %}
  290. {% endblock %}