{% extends 'base.html.twig' %}
{% block title %}Réinitilisez votre mot de passe{% endblock %}
{% block body %}
{% for flashError in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
{% endfor %}
<h1>Réinitilisez votre mot de passe</h1>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div>
<small>
Entrez votre email pour obtenir un lien de réinitialisation
</small>
</div>
<button class="btn btn-primary">Envoyer l'email de réinitialisation du mot de passe</button>
{{ form_end(requestForm) }}
{% endblock %}