<html class="fixed">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
{{ encore_entry_link_tags('app') }}
{% block stylesheets %}
{% endblock %}
</head>
<body>
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
<section class="body-sign">
<div class="center-sign">
<a href="/" class="logo float-left">
<img src="{{ asset('build/images/logo.png') }}" height="70" />
</a>
<div class="panel card-sign">
<div class="card-title-sign mt-3 text-end">
<h2 class="title text-uppercase font-weight-bold m-0"><i class="bx bx-user-circle me-1 text-6 position-relative top-5"></i> Mot de passe </h2>
</div>
<div class="card-body">
<div class="form-group mb-3">
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
<h1>Initialize mot de passe</h1>
{{ form_start(requestForm) }}
{{ form_row(requestForm.emailCompte) }}
<div>
<small>
Enter votre adresse mail
</small>
</div>
<button class="btn btn-primary">Envoyer</button>
{{ form_end(requestForm) }}
</div>
</div>
</div>
</section>