templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'cp/layout/anonymous-area.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% set page_title = 'Reset your password' %}
  4. {% block fos_user_content %}
  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 class="col-sm-2"></div>
  12.     <p class="col-sm-10">
  13.         <small>
  14.             Enter your email address and we will send you a
  15.             link to reset your password.
  16.         </small>
  17.     </p>
  18.     <div class="section mn text-center">
  19.         <button class="btn btn-primary mt5">Send password reset email</button>
  20.     </div>
  21.     {{ form_end(requestForm) }}
  22. {% endblock %}