src/Flexy/FrontBundle/Themes/CoWorking/templates/layout.html.twig line 618

  1. <!doctype html>
  2. <html class="no-js" lang="fr">
  3.     
  4. <!-- index28:48-->
  5.   <head>
  6.       <title>{% block title %}Cowork & live{% endblock %}</title>
  7.     {% block metas %}
  8.     {{front.renderSeo|join|raw}}
  9.     {% endblock %}
  10.     
  11.     <link rel="shortcut icon" href="{{asset("themes/coworking/images/logo-black.png")}}" />
  12.     <meta name="format-detection" content="telephone=no" />
  13.     
  14.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
  15.     
  16.     
  17.     <meta
  18.       name="viewport"
  19.       content="width=device-width,initial-scale=1,shrink-to-fit=no,maximum-scale=1"
  20.     />
  21.     <meta charset="UTF-8">
  22.     {% block stylesheets %}
  23.     <style>
  24.         .fa-linkedin {
  25.     color: #ffffff !important;
  26.     font-size: 15px !important;
  27. }
  28. #brochure:hover{
  29.     text-decoration:underline;
  30. }
  31. .text-pdf-btn {
  32.     position: fixed;
  33.     bottom: 145px;
  34.     right: 8px;
  35.     z-index: 9999;
  36.     font-weight: 700;
  37.     font-size: 10px;
  38.     color:black;
  39.   
  40. }
  41. #textForWhatsap {
  42.     position: fixed;
  43.     bottom: 40px;
  44.     right: 90px;
  45.     z-index: 9999;
  46.     font-weight: 700;
  47.     font-size: 10px;
  48.     color:black;
  49.   
  50. }
  51. #textForWhatsap:hover{
  52.      color:#DFB150;
  53. }
  54. .text-pdf-btn:hover{
  55.      color:#DFB150;
  56. }
  57. .pdf-btn {
  58.   position: fixed;
  59.   bottom: 90px;
  60.   right: 20px;
  61.   z-index: 9999;
  62.   width: 60px;
  63.   height: 60px;
  64.   border-radius: 50%;
  65.   background-color: #DFB150;
  66.   display: flex;
  67.   align-items: center;
  68.   justify-content: center;
  69.   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  70.   animation: breathePdf 2s ease-in-out infinite;
  71. }
  72. /*Estilos solo al icono whatsapp*/
  73. .pdf-btn i {
  74.   color: #fff;
  75.   font-size: 24px;
  76.   animation: beatPdf 2s ease-in-out infinite;
  77.   text-decoration: none;
  78. }
  79. .whatsapp-btn {
  80.   position: fixed;
  81.   bottom: 20px;
  82.   right: 20px;
  83.   z-index: 9999;
  84.   width: 60px;
  85.   height: 60px;
  86.   border-radius: 50%;
  87.   background-color: #25D366;
  88.   display: flex;
  89.   align-items: center;
  90.   justify-content: center;
  91.   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  92.   animation: breathe 2s ease-in-out infinite;
  93. }
  94. /*Estilos solo al icono whatsapp*/
  95. .whatsapp-btn i {
  96.   color: #fff;
  97.   font-size: 24px;
  98.   animation: beat 2s ease-in-out infinite;
  99.   text-decoration: none;
  100. }
  101. /*Estilos con animation contorno respirando*/
  102. @keyframes breathe {
  103.   0% {
  104.     box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  105.   }
  106.   70% {
  107.     box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  108.   }
  109.   100% {
  110.     box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  111.   }
  112. }
  113. /*Estilos de animacion del icono latiendo*/
  114. @keyframes beat {
  115.   0% {
  116.     transform: scale(1);
  117.   }
  118.   50% {
  119.     transform: scale(1.2);
  120.   }
  121.   100% {
  122.     transform: scale(1);
  123.   }
  124. }
  125. /*Estilos con animation contorno respirando*/
  126. @keyframes breathePdf {
  127.   0% {
  128.     /*box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);*/
  129.     box-shadow: 0 0 0 0 rgb(218 37 37);
  130.   }
  131.   70% {
  132.     /*box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);*/
  133.     box-shadow: 0 0 0 0 15px rgb(218 37 37);
  134.   }
  135.   100% {
  136.     /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);*/
  137.     box-shadow: 0 0 0 0 rgb(218 37 37);
  138.   }
  139. }
  140. /*Estilos de animacion del icono latiendo*/
  141. @keyframes beatPdf {
  142.   0% {
  143.     transform: scale(1);
  144.   }
  145.   50% {
  146.     transform: scale(1.2);
  147.   }
  148.   100% {
  149.     transform: scale(1);
  150.   }
  151. }
  152. .user-btn {
  153.   position: fixed;
  154.  bottom: 160px;
  155.   right: 20px;
  156.   z-index: 9999;
  157.   width: 60px;
  158.   height: 60px;
  159.   border-radius: 50%;
  160.   background-color: #25D366;
  161.   display: flex;
  162.   align-items: center;
  163.   justify-content: center;
  164.   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  165.   animation: breatheUser 2s ease-in-out infinite;
  166. }
  167. /*Estilos solo al icono whatsapp*/
  168. .user-btn i {
  169.   color: #fff;
  170.   font-size: 24px;
  171.   animation: beatUser 2s ease-in-out infinite;
  172.   text-decoration: none;
  173. }
  174. /*Estilos con animation contorno respirando*/
  175. @keyframes breatheUser {
  176.  0% {
  177.     box-shadow: 0 0 0 0 rgba(128, 128, 128, 0.5); /* Grey */
  178.   }
  179.   70% {
  180.     box-shadow: 0 0 0 15px rgba(128, 128, 128, 0); /* Transition to grey, fading out */
  181.   }
  182.   100% {
  183.     box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); /* Fully transparent */
  184.   }
  185. }
  186. /*Estilos de animacion del icono latiendo*/
  187. @keyframes beatUser {
  188.   0% {
  189.     transform: scale(1);
  190.   }
  191.   50% {
  192.     transform: scale(1.2);
  193.   }
  194.   100% {
  195.     transform: scale(1);
  196.   }
  197. }
  198.       #brochure{
  199.            padding-left: 7px!important;
  200.        }
  201.        
  202.        i.fa-regular.fa-map
  203.        {
  204.        padding-left: 15px!important;
  205.        }
  206. /*popup form*/
  207. .popup-btn{
  208.     position: absolute!important;
  209.     top: 55%;
  210.     left: 50%;
  211.     transform: translate(-50%,-50%);
  212. }
  213. .main-btn-rect,
  214. .main-btn-circle{
  215.     position: relative;
  216.     margin: 0;
  217.     font-family: 'Roboto', sans-serif;
  218.     color: #e5c88a;
  219.     /*background-color: rgb(252, 79, 79);*/
  220.     text-transform: uppercase;
  221.     font-size: 25px;
  222.     letter-spacing: 1px;    
  223.     outline: none;
  224.     cursor: pointer;
  225.        
  226.     z-index: 100;
  227. }
  228. .main-btn-rect {
  229.     padding: 10px 80px;
  230.     line-height: 30px;
  231. }
  232. .main-btn-rect:before, 
  233. .main-btn-rect:after{
  234.   position: absolute;
  235.   content: '';
  236.   top:0;
  237.   width: 0%;
  238.   height: 100%;
  239.   background-color: rgba(255, 255, 240, 0.2);
  240.   -webkit-transition: width 0.3s;
  241.   -o-transition: width 0.3s;
  242.   transition: width 0.3s;
  243. }
  244. .main-btn-rect:before {
  245.   left: 0;
  246. }
  247. .main-btn-rect:after {
  248.   right: 0;
  249. }
  250. .main-btn-rect:hover:before, 
  251. .main-btn-rect:hover:after{
  252.   width: 50%;
  253. }
  254. .main-btn-circle{
  255.     height: 40px;
  256.     width: 40px;
  257.     -webkit-border-radius: 50%;
  258.     border-radius: 100%;
  259.     line-height: 40px;
  260.   -webkit-transition: box-shadow 0.3s;
  261.   -o-transition: box-shadow 0.3s;
  262.   transition: box-shadow 0.3s;
  263. }
  264. .main-btn-circle:hover{   
  265.   -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  266.   -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  267.   box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  268. }
  269. .popup{
  270.   position: fixed;
  271.     top: 100%;
  272.   width: 100%;
  273.   height: 100%;
  274.   z-index: 10001;
  275. }
  276. .popup.active{
  277.   top:0;
  278.   background-color: rgba(3, 3, 3, 0.98); 
  279.   transition: background-color .6s ,opacity .6s;
  280. }
  281. .popup .main-btn-rect{
  282.   padding: 10px 100px;
  283. }
  284. .popup .popup-content{
  285.   position: absolute;
  286.   top: 50%;
  287.   left: 50%;
  288.   max-height: 568px;
  289.   min-width: 400px;
  290.   margin-top: 150px;
  291.   padding: 25px;
  292.   background-color: #FFFFF0;
  293.   color: #070000;
  294.   -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  295.   box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  296.   -ms-transform: translateX(-50%) translateY(-50%);
  297.   transform: translateX(-50%) translateY(-50%);
  298.   -webkit-transform: translateX(-50%) translateY(-50%);
  299.   -moz-transform: translateX(-50%) translateY(-50%);
  300.   -o-transform: translateX(-50%) translateY(-50%);
  301.   transition: margin .6s;
  302.   -webkit-transition: margin .6s;
  303.   -moz-transition: margin .6s;
  304.   -o-transition: margin .6s;
  305. }
  306. .popup.active .popup-content{
  307.   margin-top: 0px;
  308. }
  309. .popup-content h6{
  310.   display: table;
  311.   font-size: 16px;
  312.   text-align: center;
  313.   margin: 10px auto;
  314.   font-family: 'Roboto',sans-serif;
  315.   text-transform: uppercase;
  316.   font-weight: 100;  
  317. }
  318. .form-group{
  319.     position: relative;
  320.     width: 90%;
  321.     margin: 0px auto;
  322. }
  323. form#send input, form#send textarea{
  324.     position: relative;
  325.     margin-bottom: 5px;
  326.     width: 100%;
  327.     height: 35px;
  328.     font-family: 'RobotoLight', sans-serif;
  329.     text-indent: 20px;
  330.     background-color: transparent;
  331.     outline: 0;
  332.     border: none;
  333.     border-bottom: 1px solid #070000;
  334.     -webkit-transition: border 0.6s;
  335.     -o-transition: border 0.6s;
  336.     transition: border 0.6s;
  337.         font-size: 12px;
  338. }
  339. form#send input:focus,
  340. form#send textarea:focus{
  341.     border-bottom: 1px solid rgb(63, 173, 168); 
  342. }
  343. form#send label{
  344.     position: absolute;
  345.     top: 18px;
  346.     line-height: 28px;
  347.     -webkit-transition: color .5s;
  348.     -o-transition: color .5s;
  349.     transition: color .5s;
  350. }
  351. form#send input:focus + label,
  352. form#send textarea:focus + label{
  353.   color: rgb(63, 173, 168);
  354. }
  355. form#send .txt{
  356.     line-height: 22px;
  357.     left: 2px;
  358. }
  359. form#send .main-btn-rect {
  360. position: relative;
  361.     display: block;
  362.     padding: 3px 20px;
  363.     margin: 0px auto;
  364.     font-size: 14px;
  365.     color: #dfb150;
  366.     border: 1px solid #dfb150;
  367. }
  368. form#send .main-btn-rect i {
  369.     margin-right: 5px;
  370. }
  371. .popup .fade-out{
  372.   position: absolute;
  373.   top: -20px;
  374.   right: -20px;
  375.   text-align: center;
  376.   font-size: 15px;
  377. }
  378. .share-wrap{
  379.     position: absolute;
  380.   display: inline-table;
  381.     top: 67%;
  382.     left: 50%;
  383.     transform: translate(-50%, -50%);
  384.   padding: 15px;
  385.   text-align: center;
  386. }
  387. .share-btn{
  388.   color: #FFFFF0;
  389.   padding: 7px 25px;
  390.   text-decoration: none;
  391.   cursor: pointer;
  392.   font-weight: 100;
  393.   font-size: 14px;
  394.   font-family:'Lobster', sans-serif;
  395.   background-color: rgba(63, 173, 168, .8);
  396.   text-transform: uppercase;
  397.   border-radius: 5px;
  398.   transition: background-color .5s;
  399.   -webkit-transition: background-color .5s;
  400.   -moz-transition: background-color .5s;
  401.   -o-transition: background-color .5s;
  402. }
  403. .share-btn:hover{
  404.   color: #FFFFF0;
  405.   text-decoration: none;
  406.   background-color: rgba(63, 173, 168, 1.0);
  407. }
  408. .resp-sharing-button__link,
  409. .resp-sharing-button__icon {
  410.   display: inline-block
  411. }
  412. .resp-sharing-button__link {
  413.   text-decoration: none;
  414.   color: #fff;
  415.   margin: 2px;
  416. }
  417. .resp-sharing-button {
  418.   border-radius: 5px;
  419.   transition: 25ms ease-out;
  420.   padding: 6px 9px;
  421.   transition: background-color .5s;
  422.   -webkit-transition: background-color .5s;
  423.   -moz-transition: background-color .5s;
  424.   -o-transition: background-color .5s;
  425. }
  426. .resp-sharing-button__icon svg {
  427.   width: 1em;
  428.   height: 1em;
  429.   margin-right: 0.4em;
  430.   vertical-align: top
  431. }
  432. .resp-sharing-button--small svg {
  433.   margin: 0;
  434.   vertical-align: middle
  435. }
  436. .resp-sharing-button__icon,
  437. .resp-sharing-button__icon--solid,
  438. .resp-sharing-button__icon--solidcircle {
  439.   fill: #fff;
  440.   stroke: none
  441. }
  442. .resp-sharing-button--facebook {
  443.   background-color: #3b5998;
  444.   border-color: #3b5998;
  445. }
  446. .resp-sharing-button--facebook:hover,
  447. .resp-sharing-button--facebook:active {
  448.   background-color: #2d4373;
  449.   border-color: #2d4373;
  450. }
  451. .resp-sharing-button--twitter {
  452.   background-color: #55acee;
  453.   border-color: #55acee;
  454. }
  455. .resp-sharing-button--twitter:hover,
  456. .resp-sharing-button--twitter:active {
  457.   background-color: #2795e9;
  458.   border-color: #2795e9;
  459. }
  460. .resp-sharing-button--linkedin {
  461.   background-color: #0077b5;
  462.   border-color: #0077b5;
  463. }
  464. .resp-sharing-button--linkedin:hover,
  465. .resp-sharing-button--linkedin:active {
  466.   background-color: #046293;
  467.   border-color: #046293;
  468. }
  469. @media only screen and (max-width: 768px){
  470.  
  471.   form#send .main-btn-rect {padding: 7px 60px; font-size: 14px;}
  472.   .popup-btn{padding: 7px 60px; font-size: 14px;}
  473.   
  474.   
  475.       .fa-user:before {
  476.         font-size: 20px !important;
  477.         margin-top: 10px;
  478.     }
  479.     
  480.             .popup .fade-out {
  481.             position: absolute;
  482.             top: -22px;
  483.             right: 5px;
  484.             text-align: center;
  485.             font-size: 27px;
  486.         }
  487. }
  488. .popup-content .form-group {
  489.   position: relative;
  490.   margin-bottom: 15px;
  491. }
  492. .popup-content label {
  493.   position: absolute;
  494.   left: 10px;
  495.   top: 50%;
  496.   transform: translateY(-50%);
  497.   color: #999;
  498. }
  499. .popup-content input,
  500. .popup-content textarea {
  501.   padding-left: 35px; /* Make room for the icon */
  502.   width: 100%;
  503.   box-sizing: border-box;
  504. }
  505. .popup-content textarea {
  506.       padding-top: 2px;
  507.        padding-left: 5px;
  508.         height: 65px!important;
  509. }
  510. #txtArea::placeholder {
  511.     font-size: 13px !important; /* Adjust the size as needed */
  512.   padding-left: 10px  !important;
  513.      
  514. }
  515. .popup-content input::placeholder,
  516. .popup-content textarea::placeholder {
  517.   color: #ccc;
  518. }
  519. .popup-content input:focus + label i,
  520. .popup-content textarea:focus + label i {
  521.   color: #333; /* Optional: Change icon color on focus */
  522. }
  523. .popup-content button {
  524.   display: flex;
  525.   align-items: center;
  526. }
  527. .popup-content button i {
  528.   margin-right: 5px;
  529. }
  530. /*popup form*/
  531.     </style>
  532. {% include "@Flexy/FrontBundle/Themes/CoWorking/templates/_head.html.twig" %}
  533.     <!-- Google Tag Manager -->
  534.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  535.         new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  536.         j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  537.         'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  538.         })(window,document,'script','dataLayer','GTM-TSKN7LNV');</script>
  539.     <!-- End Google Tag Manager -->
  540. {{ encore_entry_link_tags('frontend') }}
  541.      {% include "@Flexy/FrontBundle/Themes/CoWorking/templates/_stylesheets.html.twig" %}
  542.     
  543.     {% endblock %}
  544.       </head>
  545.     <body>
  546.         <!-- Google Tag Manager (noscript) -->
  547.             <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TSKN7LNV"
  548.             height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  549.         <!-- End Google Tag Manager (noscript) -->
  550.         {% if app.request.attributes.get("_route") != "single_category_product" %}
  551.        
  552.         {% endif %}
  553.         
  554.          {{ render(path('front_header')) }}
  555.         
  556.         
  557.         
  558.         {% for type, messages in app.flashes %}
  559.             {% for message in messages %}
  560.                 {% if type == "successOrder"%}
  561.                     <!-- Dark Overlay -->
  562.                     <div id="overlayOrderValid" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 9999998;"></div>
  563.                     <!-- Alert Modal -->
  564.                     <div id="myAlertOrderValid" class="alert alert-{{ type }} text-center div-order-valid" role="alert" style="z-index: 9999999; position: absolute; top: 39%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 2%;">
  565.                         <div style="display: flex; justify-content: center; align-items: center;">
  566.                             <img class="img-order-valid" src="{{asset('/uploads/front-images/icon-valid-order.svg')}}" style="margin-top: -5px;">
  567.                         </div>
  568.                         <h5 style="margin-top: 25px;margin-bottom: 25px;">    Merci !</h5>
  569.                         <p style="font-size: 14px;">
  570.                             Vos informations ont été enregistrées avec succès.    <br>
  571.                             Nous vous remercions pour votre message et nous vous répondrons dans les plus brefs délais.    <br>
  572.                             Si vous avez des questions urgentes, n’hésitez pas à nous contacter directement par téléphone ou par e-mail.
  573.                         </p>
  574.                             
  575.                         
  576.                         <button type="button" class="close" style="position: absolute; top: 0px; right: 5px;" data-dismiss="alert" id="btnClose" aria-label="Close">
  577.                             <span aria-hidden="true">&times;</span>
  578.                         </button>
  579.                     </div>
  580.                 {% else %}
  581.                     <div id="myAlert" class="alert alert-{{ type }}" role="alert" style="z-index: 9999999;position: absolute; top: 22%; left: 50%; transform: translate(-50%, -50%);">
  582.                         <i class="fas fa-check-circle"></i>
  583.                         {{message | raw }}
  584.                         <button type="button" class="close" style="position: absolute;top: 0px;right: 5px;" data-dismiss="alert" id="btnClose" aria-label="Close">
  585.                             <span aria-hidden="true">&times;</span>
  586.                         </button>
  587.                     </div>
  588.                 {% endif %}
  589.             {% endfor %}
  590.         {% endfor %}
  591.         
  592.         
  593.         <div style="min-height:700px;" >
  594.         <div class="animate__animated animate__fadeIn" data-turbo-cache="false">
  595.             
  596.             
  597.             
  598.             
  599.         {% block body %}
  600.         
  601.         {% endblock %}
  602.         </div>
  603.         </div>
  604.         
  605.          {#{% for home in doctrine.repository('App\\Flexy\\ShopBundle\\Entity\\Order\\HomePage').findBy({ id: 2 }) %}#}
  606.                     {#  <span>{{home.banner}}</span>#}
  607.                     {#{% endfor %}#}
  608.                     
  609.         {#{% set brochureFrench = doctrine.repository('App\\Flexy\\ShopBundle\\Entity\\Order\\HomePage').findBy({ id: 1 }) %}#}
  610.         
  611.         
  612.         
  613.         
  614.          {#<a href="#" target=”_blank” class="pdf-btn" style="bottom: 130px !important;">   #}
  615.          {#       <div>#}
  616.          {#           <span id="brochure" style="font-size: 10px;color: white;font-weight: 600;">Brochure</span>#}
  617.          {#           <i class="fa-regular fa-masp"></i>#}
  618.          {#           </div>#}
  619.                     
  620.          {#       </a>#}
  621.         
  622.         
  623.         
  624.         
  625.          <a  class="user-btn" style="background-color:#788c80;" data-popup="popup-reg" >
  626.           <i class="fa fa-user"></i>
  627.         </a>
  628.                 {% for home in doctrine.repository('App\\Flexy\\ShopBundle\\Entity\\Order\\HomePage').findBy({ id: 1 }) %}
  629.                       
  630.                     
  631.         <a href="/uploads/coworking/brochure-pdf/{{home.banner}}" target=”_blank” class="pdf-btn">
  632.           {% endfor %}
  633.             <div>  
  634.             <span id="brochure" style="font-size: 10px;color: white;font-weight: 600;">Brochure</span>
  635.             <i class="fa-regular fa-map"></i>
  636.             </div>
  637.             
  638.         </a>
  639.           {% set textWhatsap ="Bonjour, est-ce que je pourrais avoir plus d’informations sur cowork&live ?" %}
  640.           
  641.          
  642.             {% for home in doctrine.repository('App\\Flexy\\ShopBundle\\Entity\\Order\\HomePage').findBy({ id: 1 }) %}
  643.                       
  644.                 <a href="https://api.whatsapp.com/send?phone={{home.whatsapp}}&text={{textWhatsap}}" target=”_blank” class="whatsapp-btn">
  645.                   <i class="bi bi-whatsapp"></i>
  646.                 </a>
  647.                 
  648.              {% endfor %}
  649.             <div>  
  650.         
  651.         
  652.         
  653.         
  654.         <div id="popup-reg" class="popup">
  655.           <div class="popup-content">
  656.                     <div class="event-header">
  657.                       <h6>Écrivez-nous</h6>
  658.                     </div>
  659.                     <form id="send" class="send-form" action="{{path('sendEmailFromNewLead')}}" method="POST">
  660.                         
  661.                   <div class="form-group">
  662.                     <label for="name">
  663.                       <i class="fa fa-user" id="forPopup"></i>
  664.                     </label>
  665.                     <input type="text" placeholder="Nom complet ..." id="name" name="nom" required="required">
  666.                   </div>
  667.                   <div class="form-group">
  668.                     <label for="phone">
  669.                       <i class="fa fa-phone"></i>
  670.                     </label>
  671.                     <input type="tel" placeholder="Téléphone ..." id="phone"  name="tel" required="required">
  672.                   </div>
  673.                   <div class="form-group">
  674.                     <label for="mail">
  675.                       <i class="fa fa-envelope"></i>
  676.                     </label>
  677.                     <input type="email" placeholder="Email ..." id="mail" name="email" required="required">
  678.                   </div>
  679.                   <div class="form-group">
  680.                         <label for="text">
  681.                           <i class="fa fa-commenting"></i>
  682.                         </label>
  683.                         <textarea rows="4" id="txtArea" placeholder="Message ..." name="message" id="text" required="required"></textarea>
  684.                       </div>
  685.                          {#<i class="fa fa-paper-plane"></i><input class="float" type="submit" class="main-btn-rect" name="text" value="Envoyer">#}
  686.                         
  687.                     <div class="row">
  688.                         <div class="col-12" style="text-align: center;">
  689.                             <input class="float" type="submit"   value="Envoyer" style="text-indent: 0px;border: none; background-color: rgba(0, 0, 0, 1); color: rgba(255, 255, 255, 1); text-transform:uppercase; letter-spacing:3px; font-size:12px; font-family:'PT Sans', sans-serif; height: 45px; width: 180px;">
  690.                         </div>
  691.                     </div>
  692.                     </form>
  693.                     <span class="fade-out main-btn-circle" style="font-weight:900;">╳</span>
  694.           </div>
  695.         </div>
  696.         
  697.         
  698.         
  699.         
  700.         
  701.         
  702.         
  703.         
  704.         
  705.         {{ render(path('front_footer')) }}
  706.         {% block javascripts %}
  707.          
  708.             
  709.             {% include "@Flexy/FrontBundle/Themes/CoWorking/templates/_javascripts.html.twig" %}
  710.             
  711.             
  712.            
  713.         {% endblock %}
  714.        
  715.         <script>
  716.         
  717.         
  718.         $(document).ready(function(){
  719.  
  720.   $('.user-btn').click(function(){ 
  721.          
  722.     var popupBlock = $('#'+$(this).data('popup'));
  723.     popupBlock.addClass('active')
  724.       .find('.fade-out').click(function(){
  725.         popupBlock.css('opacity','0').find('.popup-content').css('margin-top','350px');        
  726.         setTimeout(function(){
  727.           $('.popup').removeClass('active');
  728.           popupBlock.css('opacity','').find('.popup-content').css('margin-top','');
  729.         }, 600);
  730.       });
  731.  });
  732.  
  733.  
  734.  
  735.      $("#btnClose").click(function () {
  736.         $("#myAlert").fadeOut();
  737.         $("#myAlertOrderValid").fadeOut();
  738.         $("#overlayOrderValid").fadeOut();
  739.       });
  740.  
  741. });
  742.         
  743.         
  744.         
  745.              function redirectToSelectedURL() {
  746.                 
  747.                 var selectElement = document.getElementById("combo");
  748.                 var selectedValue = selectElement.value;
  749.               
  750.                 // Check if a valid option is selected
  751.                 if (selectedValue !== "") {
  752.                   window.location.href = selectedValue;
  753.                 }
  754.               }
  755.            
  756.         </script>
  757.     </body>
  758. </html>