Files
ecocharge_admin_backend/templates/login.html
2026-03-09 14:11:28 +01:00

88 lines
2.1 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 - EcoCharge</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f4f7fb;
margin: 0;
padding: 0;
}
.login-container {
width: 360px;
margin: 100px auto;
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
h2 {
text-align: center;
margin-bottom: 25px;
color: #1f2937;
}
label {
display: block;
margin-bottom: 6px;
margin-top: 15px;
color: #374151;
font-weight: bold;
}
input {
width: 100%;
padding: 10px;
border: 1px solid #d1d5db;
border-radius: 8px;
box-sizing: border-box;
}
button {
width: 100%;
margin-top: 20px;
padding: 12px;
border: none;
border-radius: 8px;
background: #2563eb;
color: white;
font-size: 16px;
cursor: pointer;
}
button:hover {
background: #1d4ed8;
}
.error {
color: red;
margin-top: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Connexion Admin</h2>
<form method="POST" action="/admin/login">
<label for="username">Nom d'utilisateur</label>
<input type="text" id="username" name="username" required>
<label for="password">Mot de passe</label>
<input type="password" id="password" name="password" required>
<button type="submit">Se connecter</button>
</form>
{% if error %}
<p class="error">{{ error }}</p>
{% endif %}
</div>
</body>
</html>