81 lines
3.1 KiB
HTML
81 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<title>EduGrade - Gestion de notes</title>
|
|
</head>
|
|
<body>
|
|
<div class="hero-container">
|
|
<div class="hero-content">
|
|
<div class="logo">
|
|
<svg
|
|
width="60"
|
|
height="60"
|
|
viewBox="0 0 60 60"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect
|
|
width="60"
|
|
height="60"
|
|
rx="15"
|
|
fill="white"
|
|
fill-opacity="0.2"
|
|
/>
|
|
<path
|
|
d="M30 15L40 25L30 35L20 25L30 15Z"
|
|
fill="white"
|
|
/>
|
|
<path
|
|
d="M30 25L40 35L30 45L20 35L30 25Z"
|
|
fill="white"
|
|
fill-opacity="0.7"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<h1>Bienvenue sur EduGrade</h1>
|
|
<p class="subtitle">
|
|
Votre plateforme de gestion de notes simplifiée
|
|
</p>
|
|
<div class="cta-buttons">
|
|
<a href="/login" class="btn btn-primary">
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M10 10c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
|
|
/>
|
|
</svg>
|
|
Se connecter
|
|
</a>
|
|
<a href="/register" class="btn btn-secondary">
|
|
Créer un compte
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="features">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📊</div>
|
|
<h3>Suivi en temps réel</h3>
|
|
<p>Consultez vos notes et moyennes instantanément</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🎓</div>
|
|
<h3>Interface professeur</h3>
|
|
<p>Gérez facilement vos élèves et leurs notes</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📈</div>
|
|
<h3>Statistiques détaillées</h3>
|
|
<p>Visualisez vos performances par UE</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|