feat(admin): scaffold login screen and admin layout shell (sidebar, topbar)

This commit is contained in:
Imugiii 2026-05-09 09:27:38 +00:00
parent 68db2eef0d
commit 6f07238569
2 changed files with 56 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 777 B

View file

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connexion — Wakdo Admin</title>
<link rel="stylesheet" href="assets/css/admin.css">
</head>
<body>
<div class="login-page">
<div class="login-card">
<div class="login-logo">
<img src="assets/images/logo.png" alt="Wakdo">
<span class="login-logo-title">Wakdo Admin</span>
<span class="login-logo-sub">Back-office de gestion</span>
</div>
<form action="dashboard.html" method="get">
<div class="form-group">
<label class="form-label" for="email">Adresse e-mail</label>
<input
class="form-input"
type="email"
id="email"
name="email"
placeholder="prenom.nom@wakdo.fr"
autocomplete="email"
required
>
</div>
<div class="form-group">
<label class="form-label" for="password">Mot de passe</label>
<input
class="form-input"
type="password"
id="password"
name="password"
placeholder="Votre mot de passe"
autocomplete="current-password"
required
>
</div>
<button type="submit" class="btn btn-primary" style="width:100%;height:40px;justify-content:center;font-size:14px;font-weight:600;margin-top:4px;">
Se connecter
</button>
</form>
<div class="login-footer">
<a href="#">Mot de passe oublie ?</a>
</div>
</div>
</div>
</body>
</html>