{% extends 'full.html.twig' %}
{% block title %}FullServices - Réinitialisation mot de passe{% endblock %}
{% block body %}
<div class="login-page">
<div class="container d-flex align-items-center position-relative py-5">
<div class="card shadow-sm w-100 rounded overflow-hidden bg-none">
<div class="card-body p-0">
<div class="row gx-0 align-items-stretch">
<!-- Logo & Information Panel-->
<div class="col-lg-6">
<div class="info d-flex justify-content-center flex-column p-4 h-100">
<div class="py-5">
<h1 class="display-6 fw-bold" id="logo-fs"><img src="/images/identite/LOGO_LOGISTIC_FULL_SERVICE_DPAN001.png" class="img-fluid"
width="350 px"><!--<span>Full </span><strong> Service</strong>--></h1>
</div>
</div>
</div>
<!-- Form Panel -->
<div class="col-lg-6 bg-white">
<div class="d-flex flex-column justify-content-center py-4 px-4 px-lg-5 h-100">
<h1>Réinitialiser votre mot de passe</h1>
<div class="pb-2">
<small>
Renseigner votre identifiant pour recevoir un lien de réinitialisation de votre mot de passe.
</small>
</div>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<button class="btn btn-primary">Envoyer le mail de réinitialisation</button>
{{ form_end(requestForm) }}
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center position-absolute bottom-0 start-0 w-100 z-index-20">
<p class="text-white">Un service de <a class="external" id="link-dpan" href="https://dpan.fr/">D.P.A.N</a></p>
</div>
</div>
{% for flash_error in app.flashes('reset_password_error') %}
<!-- Notifications -->
<div class="toast-container position-fixed top-0 end-0 p-4">
<div class="toast hide bg-danger text-white" id="errorLiveToast" role="alert" aria-live="assertive"
aria-atomic="true">
<div class="toast-header bg-danger text-white"><strong class="me-auto">Une erreur est survenue</strong><small>2
secondes</small>
<button class="btn-close btn-close-white" type="button" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
</div>
</div>
{% endfor %}
{% for message in app.flashes('success') %}
<!-- Notifications -->
<div class="toast-container position-fixed top-0 end-0 p-4">
<div class="toast hide bg-success text-white" id="successLiveToast" role="alert" aria-live="assertive"
aria-atomic="true">
<div class="toast-header bg-success text-white"><strong class="me-auto">Inscription
validée</strong><small></small>
<button class="btn-close btn-close-white" type="button" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">{{ message }}</div>
</div>
</div>
{% endfor %}
{% endblock %}