templates/Account/signup.html.twig line 1

Open in your IDE?
  1. <!-- signup Model -->
  2. <style>
  3.     *{
  4.         margin: auto;
  5.         font-family: lato, Sans-Serif !important;
  6.     }
  7.     .input100{
  8.         font-family: lato, Sans-Serif;
  9.         font-size: 16px;
  10.         color: #333333;
  11.         line-height: 1.2;
  12.         display: block;
  13.         width: 100%;
  14.         height: 35px;
  15.         border-radius: 10px;
  16.         background: transparent;
  17.         padding: 0 7px 0 43px;
  18.     }
  19.     /* Absolute Center Spinner */
  20.     .loading {
  21.         position: fixed;
  22.         z-index: 999;
  23.         height: 2em;
  24.         width: 2em;
  25.         overflow: visible;
  26.         margin: auto;
  27.         top: 0;
  28.         left: 0;
  29.         bottom: 0;
  30.         right: 0;
  31.     }
  32.     /* Transparent Overlay */
  33.     .loading:before {
  34.         content: '';
  35.         display: block;
  36.         position: fixed;
  37.         top: 0;
  38.         left: 0;
  39.         width: 100%;
  40.         height: 100%;
  41.         background-color: rgba(0,0,0,0.3);
  42.     }
  43.     /* :not(:required) hides these rules from IE9 and below */
  44.     .loading:not(:required) {
  45.         /* hide "loading..." text */
  46.         font: 0/0 a;
  47.         color: transparent;
  48.         text-shadow: none;
  49.         background-color: transparent;
  50.         border: 0;
  51.     }
  52.     .loading:not(:required):after {
  53.         content: '';
  54.         display: block;
  55.         font-size: 10px;
  56.         width: 1em;
  57.         height: 1em;
  58.         margin-top: -0.5em;
  59.         -webkit-animation: spinner 1500ms infinite linear;
  60.         -moz-animation: spinner 1500ms infinite linear;
  61.         -ms-animation: spinner 1500ms infinite linear;
  62.         -o-animation: spinner 1500ms infinite linear;
  63.         animation: spinner 1500ms infinite linear;
  64.         border-radius: 0.5em;
  65.         -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  66.         box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  67.     }
  68.     /* Animation */
  69.     .row {
  70.         margin-left: 0px;
  71.         margin-right: 0px;
  72.     }
  73.     @-webkit-keyframes spinner {
  74.         0% {
  75.             -webkit-transform: rotate(0deg);
  76.             -moz-transform: rotate(0deg);
  77.             -ms-transform: rotate(0deg);
  78.             -o-transform: rotate(0deg);
  79.             transform: rotate(0deg);
  80.         }
  81.         100% {
  82.             -webkit-transform: rotate(360deg);
  83.             -moz-transform: rotate(360deg);
  84.             -ms-transform: rotate(360deg);
  85.             -o-transform: rotate(360deg);
  86.             transform: rotate(360deg);
  87.         }
  88.     }
  89.     @-moz-keyframes spinner {
  90.         0% {
  91.             -webkit-transform: rotate(0deg);
  92.             -moz-transform: rotate(0deg);
  93.             -ms-transform: rotate(0deg);
  94.             -o-transform: rotate(0deg);
  95.             transform: rotate(0deg);
  96.         }
  97.         100% {
  98.             -webkit-transform: rotate(360deg);
  99.             -moz-transform: rotate(360deg);
  100.             -ms-transform: rotate(360deg);
  101.             -o-transform: rotate(360deg);
  102.             transform: rotate(360deg);
  103.         }
  104.     }
  105.     @-o-keyframes spinner {
  106.         0% {
  107.             -webkit-transform: rotate(0deg);
  108.             -moz-transform: rotate(0deg);
  109.             -ms-transform: rotate(0deg);
  110.             -o-transform: rotate(0deg);
  111.             transform: rotate(0deg);
  112.         }
  113.         100% {
  114.             -webkit-transform: rotate(360deg);
  115.             -moz-transform: rotate(360deg);
  116.             -ms-transform: rotate(360deg);
  117.             -o-transform: rotate(360deg);
  118.             transform: rotate(360deg);
  119.         }
  120.     }
  121.     @keyframes spinner {
  122.         0% {
  123.             -webkit-transform: rotate(0deg);
  124.             -moz-transform: rotate(0deg);
  125.             -ms-transform: rotate(0deg);
  126.             -o-transform: rotate(0deg);
  127.             transform: rotate(0deg);
  128.         }
  129.         100% {
  130.             -webkit-transform: rotate(360deg);
  131.             -moz-transform: rotate(360deg);
  132.             -ms-transform: rotate(360deg);
  133.             -o-transform: rotate(360deg);
  134.             transform: rotate(360deg);
  135.         }
  136.     }
  137.     .nuevoinput{
  138.         letter-spacing: 1px !important;
  139.         width: 100% !important;
  140.         border-bottom: 1px solid #dcdcdc !important;
  141.         -webkit-appearance: none !important;
  142.         outline: none !important;
  143.         margin-bottom: 20px !important;
  144.         background-color: #f4f4f4 !important;
  145.         border: 1px solid !important;
  146.         border-color: #dcdcdc !important;
  147.         /* font-family: Poppins-Medium !important; */
  148.         font-size: 16px !important;
  149.         color: #777 !important;
  150.         line-height: 1.2 !important;
  151.         display: block !important;
  152.         width: 100% !important;
  153.         height: 35px !important;
  154.         border-radius: 10px !important;
  155.         padding: 0 7px 0 43px !important;
  156.         background-color: #f4f4f4 !important;
  157.     }
  158.     .nuevoinput::placeholder{
  159.         color: rgba(50,50,50,0.5) !important;
  160.         opacity: 0.5 !important;
  161.     }
  162.     .wrap-login100-form-btn {
  163.         border-radius: 25px;
  164.     }
  165.     .login100-form-btn {
  166.     }
  167.     .wrap-login100-form-btn:hover .login100-form-bgbtn {
  168.         left: 0;
  169.     }
  170.     .close {
  171.         position: absolute;
  172.         /* float: right; */
  173.         right: 15px;
  174.         top: 10px;
  175.         font-size: 21px;
  176.         font-weight: 700;
  177.         line-height: 1;
  178.         color: #000;
  179.         text-shadow: 0 1px 0 #fff;
  180.         filter: alpha(opacity=20);
  181.         opacity: .2;
  182.     }
  183.     .modal-body.modal-body-sub_agile {
  184.         padding: 0 2em 2em;
  185.         margin-top: 1.5em;
  186.     }
  187.     .vertical-alignment-helper {
  188.         height: 100%;
  189.         width: 100%;
  190.         pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  191.     }
  192.     .vertical-align-center {
  193.         /* To center vertically */
  194.         display: table-cell;
  195.         vertical-align: middle;
  196.         pointer-events:none;
  197.     }
  198.     .modal-content {
  199.         /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  200.         width:inherit;
  201.         max-width:inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
  202.         height:inherit;
  203.         /* To center horizontally */
  204.         margin: 0 auto;
  205.         pointer-events: all;
  206.     }
  207.     .modal-backdrop
  208.     {
  209.         opacity:0.5 !important;
  210.     }
  211.     .cabecera{
  212.         font-size: 20px;
  213.     }
  214.     @media only screen and (max-width: 400px) {
  215.         .modal-dialog {
  216.             margin-top: 25% !important;
  217.         }
  218.         .input100{
  219.             font-size: 13px !important;
  220.         }
  221.         .label-input100{
  222.             font-size: 13px !important;
  223.         }
  224.         .cabecera{
  225.             font-size: 18px;
  226.         }
  227.     }
  228.     @media only screen and (max-width: 500px) {
  229.         .cabecera{
  230.             font-size: 20px;
  231.         }
  232.     }
  233.     .sinscroll {
  234.         overflow-y: scroll; /* Add the ability to scroll */
  235.     }
  236.     /* Hide scrollbar for Chrome, Safari and Opera */
  237.     .sinscroll::-webkit-scrollbar {
  238.         display: none;
  239.     }
  240.     /* Hide scrollbar for IE, Edge and Firefox */
  241.     .sinscroll {
  242.         -ms-overflow-style: none;  /* IE and Edge */
  243.         scrollbar-width: none;  /* Firefox */
  244.     }
  245. </style>
  246. <!-- Modal2 -->
  247. <div class="modal fade secuencia sinscroll" id="myModal2" tabindex="-1" role="dialog" style="width: 100%; z-index: 9999; padding-top: 15px; padding-bottom: 15px;" >
  248.     <div class="vertical-alignment-helper">
  249.         <div class="modal-dialog  modal-dialog2" style="margin-top: 5%; max-width: 500px; z-index: 99999;">
  250.             <!-- Modal content-->
  251.             <div class="modal-content sinscroll" style="border-radius: 10px; max-height: 85vh;">
  252.                 <button type="button" class="close" data-dismiss="modal">&times;</button>
  253.                 <div class="modal-body modal-body-sub_agile" style="width: 100%;">
  254.                         <div class="row justify-content-center" id="logoRegistrar" style="padding-bottom: 0px;">
  255.                             <div style="width: 80%">
  256.                                 <img class="loguito" alt="logo" src="{{ asset('login_assets/images/logo2.png') }}" style="align-content: center; width: 100% !important;">
  257.                             </div>
  258.                         </div>
  259.                     <div class="row text-center" style="padding-bottom:10px; width: 100%;">
  260.                         <h4 class="cabecera" style="font-weight: bold; margin: auto; font-family: lato, Sans-Serif !important;">Crear tu Cuenta</h4>
  261.                     </div>
  262.                     <div class="wrap-input100 validate-input m-b-23" data-validate="El correo es Obligatorio">
  263.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Correo electrónico</span>
  264.                         <input class="input100 verificar1 nuevoinput" type="text" name="_mail" id="signUpEmail" required placeholder="Ingresa tu E-mail">
  265.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  266.                     </div>
  267.                     <div class="wrap-input100 validate-input m-b-23" data-validate="El nombre de Usuario es Obligatorio">
  268.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Nombre de Usuario</span>
  269.                         <input class="input100 verificar1 nuevoinput" type="text" name="_username" id="signUpUsername" required placeholder="Ingresa tu Nickname">
  270.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  271.                     </div>
  272.                     <div class="wrap-input100 validate-input m-b-23" data-validate="La contraseña es Obligatoria">
  273.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Contraseña</span>
  274.                         <input class="input100 verificar1 nuevoinput pruebainput" type="password" name="_password" id="signUpPassword" required placeholder="Ingresa una Contraseña">
  275.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  276.                     </div>
  277.                     <div class="wrap-input100 validate-input m-b-23" data-validate="La contraseña es Obligatoria">
  278.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Confirmar contraseña</span>
  279.                         <input class="input100 verificar1 nuevoinput" type="password" name="_password2" id="signUpPassword2" required placeholder="Confirma la Contraseña">
  280.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  281.                     </div>
  282.                     <div class="wrap-input100 validate-input m-b-23" data-validate="El nombre es Obligatorio">
  283.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Nombre</span>
  284.                         <input class="input100 verificar1 nuevoinput" type="text" name="_nombre" id="signUpNombre" required placeholder="Ingresa tu Nombre">
  285.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  286.                     </div>
  287.                     <div class="wrap-input100 validate-input m-b-23" data-validate="El Apellido Paterno es Obligatorio">
  288.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Apellido Paterno</span>
  289.                         <input class="input100 verificar1 nuevoinput" type="text" name="_apPaterno" id="signUpApPaterno" required placeholder="Ingresa tu Apellido Paterno">
  290.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  291.                     </div>
  292.                     <div class="wrap-input100 validate-input m-b-23" data-validate="El Apellido Materno es Obligatorio">
  293.                         <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Apellido Materno</span>
  294.                         <input class="input100 verificar1 nuevoinput" type="text" name="_apMaterno" id="signUpApMaterno" required placeholder="Ingresa tu Apellido Materno">
  295.                         <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  296.                     </div>
  297.                     <div class="row">
  298.                         <div class="col-xs-8" style="padding: 0;">
  299.                             <div class="wrap-input100 validate-input m-b-23" data-validate="El Carnet de Identidad es Obligatorio">
  300.                                 <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Carnet de Identidad</span>
  301.                                 <input class="input100 verificar1 nuevoinput" type="text" name="_CI" id="signUpCI" required placeholder="Ingresa tu Carnet de Identidad" style="margin-right: 5px;">
  302.                                 <!-- <span class="focus-input100" data-symbol="&#xf206;"></span>-->
  303.                             </div>
  304.                         </div>
  305.                         <div class="col-xs-4" style="padding: 0;">
  306.                             <div class="wrap-input100 validate-input m-b-23">
  307.                                 <span class="label-input100" style="font-weight: bold; padding-bottom: 10px;">Expedido</span>
  308.                                 <select id="signUpComplementoCI" class="input100 nuevoinput" style="margin-left: 5px;">
  309.                                     <option value="CH" selected>Chuquisaca</option>
  310.                                     <option value="LP">La Paz</option>
  311.                                     <option value="CB">Cochabamba</option>
  312.                                     <option value="OR">Oruro</option>
  313.                                     <option value="PT">Potosí</option>
  314.                                     <option value="TJ">Tarija</option>
  315.                                     <option value="SC">Santa Cruz</option>
  316.                                     <option value="BE">Beni</option>
  317.                                     <option value="PD">Pando</option>
  318.                                 </select>
  319.                             </div>
  320.                         </div>
  321.                     </div>
  322.                     <!--div class="wrap-input100 validate-input m-b-23" data-validate="Debe aceptar los terminos y COndiciones">
  323.                         <table border="0" width="100%">
  324.                             <tr>
  325.                                 <td>
  326.                                     <input type="checkbox" id="terminos" name="terminos" value="Acepto" name="_terminos" id="chkTerminos" class="verificar1" >
  327.                                 </td>
  328.                                 <td>
  329.                                     <label class="label-input100" for="chkTerminos">Acepto los <a href="#" data-toggle="modal" data-target="#myModalTerminos">Términos y condiciones de uso</a></label>
  330.                                 </td>
  331.                             </tr>
  332.                         </table>
  333.                     </div-->
  334.                     <div class="row">
  335.                         <div class="col-sm-12">
  336.                             <label id="mensajeVerificar1" style="color: #0000cc; font-size: 10px;"></label>
  337.                         </div>
  338.                     </div>
  339.                     <div class="container-login100-form-btn p-t-18 p-b-31">
  340.                         <div class="wrap-login100-form-btn">
  341.                             <div class="login100-form-bgbtn"></div>
  342.                             <button id="btnRegistrarse" class="login100-form-btn">
  343.                                 Registrarse
  344.                             </button>
  345.                         </div>
  346.                     </div>
  347.                 </div>
  348.             </div>
  349.             <!-- //Modal content-->
  350.         </div>
  351.         <div class="loading" style="display: none">Loading&#8230;</div>
  352.     </div>
  353. </div>
  354.     <!-- //Modal2 -->
  355.     <!-- //signup Model -->