<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authentification</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
{# html, body {
background-color: rgb(122, 163, 185);
} #}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
position: relative;
/*background: url('/img/bg2.png') no-repeat center center fixed;/*ancienne bgcanva3.png*/
background-size: cover;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(201, 239, 255, 0.5); /* Couche blanche semi-transparente */
z-index: -1;
}
body {
font-family: "Poppins", sans-serif;
height: 100vh;
}
a {
color: #123c59;
display: inline-block;
text-decoration: none;
font-weight: 400;
}
h2 {
text-align: center;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
display: inline-block;
margin: 40px 8px 10px 8px;
color: #cccccc;
}
.wrapper {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 100%;
min-height: 100%;
padding: 20px;
}
#formContent {
border-radius: 10px;
background: #fff;
width: 90%;
max-width: 600px;
position: relative;
padding: 30px 30px 30px 30px;
box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
text-align: center;
}
#formTitle {
background-color: #f6f6f6;
border-top: 1px solid #dce8f1;
padding: 25px;
text-align: center;
border-radius: 0 0 10px 10px;
}
input[type=button], input[type=submit], input[type=reset] {
background-color:#123c59;
border: none;
color: white;
padding: 15px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
text-transform: uppercase;
font-size: 13px;
box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
border-radius: 5px;
margin: 5px 20px 40px 20px;
transition: all 0.3s ease-in-out;
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
background-color:rgb(124, 168, 191);
}
input[type=text], input[type=password],input[type=email] {
background-color: #f6f6f6;
border: none;
color: #0d0d0d;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 5px;
width: 85%;
border: 2px solid #f6f6f6;
transition: all 0.5s ease-in-out;
border-radius: 5px;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #fff;
border-bottom: 2px solid rgb(124, 168, 191);
}
.fadeInDown {
animation: fadeInDown 1s both;
}
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
transform: none;
}
}
*:focus {
outline: none;
}
@media only screen and (max-width: 767px) {
.logo {
font-size: 34px;
}
}
.sinscrire {
text-transform: uppercase;
font-size: 12px;
border-radius: 15px;
transition: all 0.3s ease-in-out;
border: 1px solid #1ec6cc;
color: white;
padding: 10px 20px;
font-weight: bold;
background-image: linear-gradient(45deg, #1ec6cc, #123c59);
}
.sinscrire:hover {
background-image: linear-gradient(45deg, #123c59, #1ec6cc);
}
.reset-title {
font-size: 1.5rem; /* taille lisible */
font-weight: 600; /* semi-gras moderne */
color: #2c3e50; /* gris foncé élégant */
position: relative;
display: inline-block;
padding-bottom: 8px;
}
.reset-title::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg,#1eb6cc;, #123c59);
border-radius: 2px;
}
.logo-img{
margin-bottom:20px;
width:80%;
}
.logo-bar {
width: 100%;
padding: 5px 0;
gap: 8px; /* espace réduit entre les images */
}
.logo-mini {
height: 30px; /* si tu veux garder 35px, laisse 35px */
width: auto;
margin: 0px 3px; /* TRÈS petit espace horizontal */
object-fit: contain;
}
/* Version mobile : 2 logos par ligne */
@media (max-width: 768px) {
.logo-bar {
justify-content: center !important;
}
.logo-mini {
flex: 1 1 40%;
max-width: 60%;
}
}
</style>
</head>
<body>
<div class="wrapper fadeInDown">
<!-- LIGNE DES 5 LOGOS RESPONSIVE -->
<div class="logo-bar d-flex justify-content-center align-items-center flex-wrap mb-3">
<img src="/img/telecontact.png" class="logo-mini" alt="logo1">
<img src="/img/kompass.png" class="logo-mini" alt="logo2">
<img src="/img/medicalis.png" class="logo-mini" alt="logo3">
<img src="/img/sitecontact.png" class="logo-mini" alt="logo4">
<img src="/img/E-rdv.png" class="logo-mini" alt="logo5">
</div>
<div id="formContent">
<h3 class="text-center mb-4 reset-title">Recevez un lien de réinitialisation par email</h3>
<form method="post" action="{{ path('forgot_password') }}">
<div class="input-group mb-3">
<input type="email" name="email" placeholder="Votre email" required class="form-control mb-3">
</div>
<button type="submit" class="btn sinscrire w-25">Envoyer</button>
{% for message in app.flashes('success') %}
<div class="alert alert-success mt-2">{{ message }}</div>
{% endfor %}
{% for message in app.flashes('error') %}
<div class="alert alert-danger mt-2">{{ message }}</div>
{% endfor %}
</form>
</div>
</div>
</body>
</html>