Files
maquette_backoffice/connexion/html/page_de_connexion.html
2025-12-10 14:17:34 +01:00

70 lines
1.8 KiB
HTML

<!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: #f4f6f981;
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">
<h1 class="text-center mb-4 fs-3">Connexion Admin</h1>
<form>
<div class="mb-3">
<label class="form-label">Adresse e-mail </label>
<input
type="email"
class="form-control"
id="textInput"
/>
</div>
<div class="mb-3">
<label class="form-label" for="password">Mot de passe</label>
<input
type="password"
class="form-control"
id="password"
/>
<label for="showPassword" class="mt-2">
<input type="checkbox" id="showPassword" />
Voir le mot de passe
</label>
</div>
<button class="btn btn-primary w-100" type="submit">Se connecter</button>
<div class="text-center mt-3">
<a href="../html/mot_de_passe_oublie.html" class="text-decoration-none">Mot de passe oublié ?</a>
</div>
</form>
</div>
</div>
<script src="../js/page_de_connexion.js"></script>
<script src="../../node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>