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. <section class="pad-tb">
  5. <div class="container">
  6. {% for flashError in app.flashes('reset_password_error') %}
  7. <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  8. {% endfor %}
  9. <h1 class="mb10">Reset your password</h1>
  10. {{ form_start(requestForm) }}
  11. {{ form_row(requestForm.email) }}
  12. <div class="mb10">
  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-primary">Send password reset email</button>
  19. {{ form_end(requestForm) }}
  20. </div>
  21. </section>
  22. {% endblock %}