request.html.twig 681 B

12345678910111213141516171819202122
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% block body %}
  4. {% for flashError in app.flashes('reset_password_error') %}
  5. <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  6. {% endfor %}
  7. <h1>Reset your password</h1>
  8. {{ form_start(requestForm) }}
  9. {{ form_row(requestForm.outgoing_email) }}
  10. <div>
  11. <small>
  12. Enter your email address and we we will send you a
  13. link to reset your password.
  14. </small>
  15. </div>
  16. <button class="btn btn-primary">Send password reset email</button>
  17. {{ form_end(requestForm) }}
  18. {% endblock %}