Ajout page connexion/mot de passe ouble/ reinitialisation du mot de passe backoffice

This commit is contained in:
ben
2025-12-04 12:19:19 +01:00
parent 7be80830f1
commit 58d210802f
4 changed files with 190 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connexion Admin</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<style>
body{
background: #f2f4f7;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.login-card {
width: 100%;
max-width: 380px;
}
</style>
</head>
<body>
<div class="card shadow login-card">
<div class="card-body p-4">
<h3 class="text-center mb-4">Connexion Admin</h3>
<form>
<div class="mb-3">
<label class="form-label">Mot de passe</label>
<input type="password" class="form-control" placeholder="••••••••">
</div>
<button class="btn btn-primary w-100">Se connecter</button>
<div class="text-center mt-3">
<a href="#" class="text-decoration-none">Mot de passe oublié ?</a>
</div>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>