{% extends 'base.html.twig' %}
{% block title %}ForgotPassword | Webshop{% endblock %}
{% block body %}
<section class="h-100">
<header class="container h-100">
<div class="d-flex align-items-center justify-content-center h-100 homeHeight">
<div class="container text-center content-lighten">
<div class="mt-3">
<h1> Réinitialisation du mot de passe </h1>
<hr>
<div class="d-flex flex-column">
<div class="container w-50 homeContainer">
{% for flashMessage in app.session.flashbag.get('success') %}
<div class="alert alert-success alert-dismissible text-center" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span></button>
<strong> Succès ! </strong> {{ flashMessage }}
</div>
{% endfor %}
{% for message in app.flashes('error') %}
<div class="alert alert-danger alert-dismissible text-center" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span></button>
<strong>Error !</strong> {{ message }}
</div>
{% endfor %}
<div class="mb-4 p-5">
{{ form(formForgotPassword) }}
</div>
</div>
</div>
</div>
</div>
</div>
</header>
</section>
{% endblock %}