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="row">
  5.         <div class="col-md-4 offset-md-4 mb-3 mt-3 text-center">
  6.             {% for flashError in app.flashes('reset_password_error') %}
  7.                 <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  8.             {% endfor %}
  9.             <h1 class="h3 mb-3 font-weight-normal">Reset your password</h1>
  10.             {{ form_start(requestForm) }}
  11.             {{ form_row(requestForm.email) }}
  12.             <div class="mb-2">
  13.                 <small>
  14.                     Enter your email address and we we will send you a
  15.                     link to reset your password.
  16.                 </small>
  17.             </div>
  18.             <button class="btn btn-lg btn-primary btn-block">Send password reset email</button>
  19.             {{ form_end(requestForm) }}
  20.         </div>
  21.     </div>
  22. {% endblock %}