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