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.     <div class="container-fluid p-5 bg-white">
  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 will send you a
  14.                 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.     </div>
  20. {% endblock %}