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.     {% for flashError in app.flashes('reset_password_error') %}
  5.         <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  6.     {% endfor %}
  7.     <h1>Reset your password</h1>
  8.     {{ form_start(requestForm) }}
  9.         {{ form_row(requestForm.email) }}
  10.         <div>
  11.             <small>
  12.                 Enter your email address and we we will send you a
  13.                 link to reset your password.
  14.             </small>
  15.         </div>
  16.         <br />
  17.         <button class="btn btn-light">Send password reset email</button>
  18.     {{ form_end(requestForm) }}
  19. {% endblock %}