src/Aviatur/TwigBundle/Resources/views/aviatur/Flux/App/modalCall.html.twig line 1

Open in your IDE?
  1. <!-- ModalLoLlamamos -->
  2.     <div id="showLoLlamamos" class="wrong-modal  m:!absolute s:!absolute xs:!absolute" style="display: none;">
  3.         <div class="modal-show">
  4.             <button style="color:#042A44; padding-left: 98%; border: none; background: transparent; font-size: 16px; cursor: auto;">
  5.                 <span id="closeModal" style="cursor: pointer;"> ✖ </span>
  6.             </button>
  7.             <div id="divFormLoLlamamos">
  8.                 <h3 class="title xs:text-[22px] s:text-[24px]">Lo llamamos</h3>
  9.                 <form id="formLoLlamamos" style="margin-top:40px;" novalidate>
  10.                     <div class="loLlamamos_inputs">
  11.                         <label class="form-group s:w-full xs:w-full s:mb-4 xs:mb-4" style="display: flex; width: 45%; min-height:60px; margin-bottom:0;" for="Nombre">
  12.                             <input required id="Nombre" name="Nombre" class="form-input" placeholder=" " maxlength="50" minlength="10" onkeydown="validationInputType(event, 'text')">
  13.                             <span class="form-input_label"> Nombre completo</span>
  14.                         </label>
  15.                         <label class="form-group s:w-full xs:w-full s:mb-4 xs:mb-4" style="display: flex;width: 45%; min-height:60px; margin-bottom:0;" for="NumeroCelular">
  16.                             <input required id="NumeroCelular" name="NumeroCelular" class="form-input" placeholder=" " maxlength="10" minlength="10" onkeydown="validationInputType(event, 'phone')">
  17.                             <span class="form-input_label"> Número de celular </span>
  18.                         </label>
  19.                     </div>
  20.                     <button class="callLoLlamamos" style="background:#00C382;">Enviar</button>
  21.                 </form>
  22.             </div>
  23.             <div id="resultLoLlamamos" style="display: none;">
  24.                 <h3 class="text-[28px] font-roboto font-bold xs:text-[22px] s:text-[24px]">Gracias, pronto alguno de nuestros asesores lo contactará</h3>
  25.                 <button id="okCloseModal" class="callLoLlamamos" style="background:#00C382; margin-top: 2rem;">Ok</button>
  26.             </div>
  27.         </div>
  28.     </div>
  29.