templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% block body %}
  4. <div class="d-flex flex-column p-2 justify-content-center align-items-center">
  5.     {% for flashError in app.flashes('reset_password_error') %}
  6.         <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  7.     {% endfor %}
  8.     <h1>Reset your password</h1>
  9.     {{ form_start(requestForm) }}
  10.         {{ form_row(requestForm.email) }}
  11.         <div>
  12.             <small>
  13.                 Enter your email address and we we will send you a
  14.                 link to reset your password.
  15.             </small>
  16.         </div>
  17.         <div class="d-flex justify-content-center">
  18.             <button class="btn btn-primary">Send password reset email</button>
  19.         </div>
  20.     {{ form_end(requestForm) }}
  21. </div>
  22. {% endblock %}