{% extends 'base.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 %}
<div class="container bg-light rounded p-5">
<h1>Reset your password</h1>
{{ form_start(requestForm) }}
<div class="input-group mt-5">
<span class="input-group-text">{{ form_label(requestForm.email) }}</span>
{{ form_widget(requestForm.email, {'attr': {'class': 'form-control'}}) }}
</div>
<div>
<small>
Enter your email address and we will send you a
link to reset your password.
</small>
</div>
<button class="btn btn-primary mt-5">Send password reset email</button>
{{ form_end(requestForm) }}
</div>
{% endblock %}