{% extends 'base.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% block body %}
<div class="row">
<div class="col-md-4 offset-md-4 mb-3 mt-3 text-center">
{% for flashError in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
{% endfor %}
<h1 class="h3 mb-3 font-weight-normal">Reset your password</h1>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div class="mb-2">
<small>
Enter your email address and we we will send you a
link to reset your password.
</small>
</div>
<button class="btn btn-lg btn-primary btn-block">Send password reset email</button>
{{ form_end(requestForm) }}
</div>
</div>
{% endblock %}