{% extends 'Frontend/layout.html.twig' %}
{% block title %}Reset your password
{% endblock %}
{% block body %}
{% for flashError in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
{% endfor %}
<section id="forms" class="register resetpwd">
<div class="row">
<article id="reset">
<header>
<h1>Reset password</h1>
</header>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div>
<p>Enter your email address to receive an email with a link to change your password.</p>
</div>
<button class="btn btnPrimary">Send</button>
{{ form_end(requestForm) }}
</article>
</div>
</section>
{% endblock %}