{% extends 'base.html.twig' %}
{% block title %}Réinitialisez votre mot de passe{% endblock %}
{% block body %}
<div class="text-center mb-5">
<img src="{{ asset('img/logo_transparent.png') }}" height="130vh"/><br/>
<h1>Réinitialisez votre mot de passe</h1>
</div>
{{ form_start(motDePasseOublieForm) }}
<div class="row">
<div class="offset-3 col-6">
<label for="email">Email :</label>
{{ form_widget(motDePasseOublieForm.email) }}
<small>
Entrez votre adresse e-mail et nous vous enverrons un nouveau mot de passe.
</small>
<button type="submit" class="btn btn-primary">Envoyer mail de réinitialisation</button>
</div>
</div>
{{ form_end(motDePasseOublieForm) }}
{% endblock %}