templates/security/login.html.twig line 1

Open in your IDE?
  1. {% extends 'login.html.twig' %}
  2. {% block title %}
  3.     - Inicio de sesi贸n
  4. {% endblock %}
  5. {% block body %}
  6.     <!-- Header fuera de la caja de login -->
  7.     <header class="header">
  8.         <img src="{{ asset('img/sistema/Plecas_Escudo.png') }}" alt="Logo" class="logo">
  9.         <h1 class="project-name">SIGMEC</h1>
  10.     </header>
  11.     <div class="login-box">
  12.         <div class="card-body">
  13.             <h1 class="text-title">
  14.                 Iniciar Sesi贸n
  15.             </h1>
  16.             <h3 class="text-subtitle">Bienvenidos ...!! a
  17.                 <b>SIGMEC</b>
  18.                 para poder ingresar coloca la infromaci贸n que se te pide. 馃槈</h3>
  19.             <form method="post">
  20.                 {% if error %}
  21.                     <div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
  22.                 {% endif %}
  23.                 {% if app.user %}
  24.                     <div class="mb-3">
  25.                         Has iniciado sesi贸n como
  26.                         {{ app.user.username }},
  27.                         <a href="{{ path('app_logout') }}">Cerrar sesi贸n</a>
  28.                     </div>
  29.                 {% endif %}
  30.                 <label for="inputCorreo" class="txt-from">Correo institucional</label>
  31.                 <input type="text" value="{{ last_username }}" name="correo" id="inputCorreo" class="form-control" autocomplete="username"  placeholder="@conalepmex.edu.mx" required autofocus>
  32.                 <label for="inputPassword"  class="txt-from">Contrase帽a</label>
  33.                 <input type="password" name="password" id="inputPassword" class="form-control" autocomplete="current-password"  placeholder="contrase帽a" required>
  34.                 <input
  35.                 type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
  36.                 {#
  37.                                                                                         Uncomment this section and add a remember_me option below your firewall to activate remember me functionality.
  38.                                                                                         See https://symfony.com/doc/current/security/remember_me.html
  39.                                                                                         #}
  40.                 <div class="checkbox">
  41.                     <label>
  42.                         <input type="checkbox" name="_remember_me">
  43.                         Mantener sesi贸n iniciada
  44.                     </label>
  45.                 </div>
  46.                 <div class="btn-sesion">
  47.                     <button class="btn-subtmit" type="submit">
  48.                         Iniciar de sesi贸n
  49.                     </button>
  50.                 </div>
  51.             </form>
  52.             {# <div class="social-auth-links text-center mt-3 mb-3">
  53.                                                                         <a href="#" class="btn btn-block btn-danger">
  54.                                                                             <i class="fab fa-microsoft mr-2"></i> Iniciar sesi贸n con Office365
  55.                                                                         </a>
  56.                                                                     </div> #}
  57.             <p class="text-link">
  58.                 <a href="{{ path('app_forgot_password_request') }}">Olvid茅 mi contrase帽a</a>
  59.             </p>
  60.             <p class="text-link">
  61.                 <a href="{{ path('common_registro') }}" class="text-center">Solicitar acceso al sistema</a>
  62.             </p>
  63.             <p class="text-link">
  64.                 <a href="{{ path('verificar_consulta') }}" target="_blank" class="text-center">Verificar sello digital</a>
  65.             </p>
  66.             <div class="social-auth-links btn-ofice">
  67.                 <a href="{{ link }}" class="btn btn-block btn-outline-primary">
  68.                     <i class="fab fa-microsoft mr-2"></i>
  69.                     Iniciar sesi贸n con Office365
  70.                 </a>
  71.             </div>
  72.             <p class="text-version">
  73.                 {{ app.request.server.get('VERSION') }}
  74.             </p>
  75.         </div>
  76.     </div>
  77.     <!-- Agregamos el footer -->
  78.     <footer class="footer">
  79.         <div class="footer-content">
  80.             <div class="footer-section contacto">
  81.                 <h4>Contacto</h4>
  82.                 <p>Avenida Jorge Jim茅nez Cant煤 s/n, <br> Col. San Juan Atlamica,<br> Cuautitl谩n Izcalli, Edo. M茅x. C.P. 54729 </p>
  83.             </div>
  84.             <div class="footer-section ayuda">
  85.                 <h4>Ayuda</h4>
  86.                 <p>Soporte T茅cnico</p>
  87.             </div>
  88.         </div>
  89.         <div class="footer-bottom">
  90.             <p>&copy; 2024 SIGMEC. TDOS LOS DERECHOS RESERVADOS, CONALEP ESTADO DE M脡XICO</p>
  91.         </div>
  92.     </footer>
  93. {% endblock %}