{% extends 'base.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% block body %}
<div class="row">
<div class="col-lg-5 center p-50 background-grey b-r-6 m-t-25 m-b-25">
{% for flashError in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
{% endfor %}
<h2>Reset your password</h2>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div>
<small>
Enter your email address and we we will send you a
link to reset your password.
</small>
</div>
<button class="btn btn-primary">Send password reset email</button>
{{ form_end(requestForm) }}
</div>
</div>
{% endblock %}