templates/security/forgot-pass.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="h-100">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Forgot Password{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             {{ encore_entry_link_tags('app') }}
  8.         {% endblock %}
  9.     </head>
  10.     <body class="login h-100 text-center" >
  11.         {% block body %}
  12.             <div class="container">
  13.                 <form class="form-signin" method="post">
  14.                     {% for label, messages in app.flashes(['success', 'danger']) %}
  15.                         {% for message in messages %}
  16.                             <div class="alert alert-{{ label }}">
  17.                                 {{ message }}
  18.                             </div>
  19.                         {% endfor %}
  20.                     {% endfor %}
  21.                     <img src="{{ asset('build/img/logo.png') }}" class="mb-4" id="logo" alt="Upfield"/>
  22.                     <h1 class="h3 mb-3 font-weight-normal">Email</h1>
  23.                     <input type="email" name="email" placeholder="Email" id="inputEmail" class="form-control" required autofocus>
  24.                     <input type="hidden" name="_csrf_token"
  25.                         value="{{ csrf_token('authenticate') }}"
  26.                     >
  27.                     {#
  28.                         Uncomment this section and add a remember_me option below your firewall to activate remember me functionality.
  29.                         See https://symfony.com/doc/current/security/remember_me.html
  30.                         <div class="checkbox mb-3">
  31.                             <label>
  32.                                 <input type="checkbox" name="_remember_me"> Remember me
  33.                             </label>
  34.                         </div>
  35.                     #}
  36.                     <button class="btn btn-primary btn-block btn-lg" type="submit">Valider</button>
  37.                     <a href="{{ path('app_login') }}" class="mt-5 mb-3 text-muted text-center">Login</a>
  38.                     <p class="mt-5 mb-3 text-muted text-center">Sogec Digital © 2023</p>
  39.                 </form>
  40.             </div>
  41.         {% endblock %}
  42.         {% block javascripts %}
  43.             {{ encore_entry_script_tags('app') }}
  44.         {% endblock %}
  45.     </body>
  46. </html>