templates/inicio/request.html.twig line 1

Open in your IDE?
  1. {#   Vista que pide el correo para resetear el password   #}
  2. {% extends 'common/base-login.html.twig' %}
  3. {% block title %}Recuperar Contraseña{% endblock %}
  4. {% block form %}
  5.     <div style="display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f4f5f7;">
  6.         <div style="background: lightgrey; padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); max-width: 400px; width: 100%;">
  7.             <div style="text-align: center; margin-bottom: 20px;">
  8.                 <img src="{{ asset('assets/images/platform/Logo_Mante.png') }}" alt="MANTE" style="max-width: 200px;">
  9.             </div>
  10.             <h3 style="text-align: center; color: #333;">Recuperar Contraseña</h3>
  11.             <p style="text-align: center; color: #666; font-size: 14px; margin-bottom: 20px;">
  12.                 Ingresa tu correo electrónico y te enviaremos un enlace para crear una nueva contraseña.
  13.             </p>
  14.             <form method="post" action="{{ path('forgot_password') }}">
  15.                 <div style="margin-bottom: 15px;">
  16.                     <label for="email" style="display: block; margin-bottom: 5px; color: #333;">Correo electrónico</label>
  17.                     <input type="email" name="email" id="email" required class="form-control" style="width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;">
  18.                 </div>
  19.                 <button type="submit" style="width: 100%; padding: 10px; background: #00bf8b; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 16px;">
  20.                     Enviar enlace
  21.                 </button>
  22.                 <div style="text-align: center; margin-top: 15px;">
  23.                     <a href="{{ path('login') }}" style="color: #666; text-decoration: none; font-size: 14px;">Volver al inicio</a>
  24.                 </div>
  25.             </form>
  26.         </div>
  27.     </div>
  28. {% endblock %}