-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 3.3 KB
/
Copy pathindex.html
File metadata and controls
99 lines (96 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EasyStudy — Application</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="authScreen">
<div class="auth-wrap">
<div class="auth-card">
<div class="logo-mark">E</div>
<div class="auth-title">
<h2>Content de te revoir</h2>
<p>Connecte-toi pour retrouver tes cours</p>
</div>
<div class="field">
<label>Adresse e-mail</label
><input placeholder="prenom.nom@email.com" />
</div>
<div class="field">
<label>Mot de passe</label
><input placeholder="••••••••" type="password" />
</div>
<button class="btn btn-primary" style="width: 100%" onclick="login()">
Se connecter
</button>
<div class="divider">ou</div>
<button class="btn btn-ghost" style="width: 100%" onclick="login()">
Continuer avec Google
</button>
<p class="auth-switch">
Pas encore de compte ?
<a href="#" onclick="return false;">Créer un compte</a>
</p>
</div>
</div>
</div>
<div id="appScreen" style="display: none">
<header>
<div class="nav-inner">
<div class="brand">
<span class="mark">E</span>easy<span class="accent">study</span>
</div>
<nav class="main-links" id="mainNav">
<button data-view="dashboard" class="active">Accueil</button>
<button data-view="schedule">Emploi du temps</button>
<button data-view="homework">Devoirs</button>
<button data-view="grades">Notes</button>
<button data-view="notifications">Rappels</button>
</nav>
<div class="search-box">
<input placeholder="Rechercher un cours, un devoir..." />
<button>🔍</button>
</div>
<div class="nav-right">
<a
class="nav-icon-link"
href="#"
onclick="
go('notifications');
return false;
"
>🔔 Rappels <span class="count">4</span></a
>
<a
class="nav-icon-link"
href="#"
onclick="
go('homework');
return false;
"
>📝 Devoirs <span class="count">3</span></a
>
<button class="btn btn-dark" onclick="go('profile')">
👤 Junior
</button>
</div>
</div>
</header>
<main id="viewContainer"></main>
<footer>
<div class="wrap">
© 2026 EasyStudy — Organise tes études, sans effort.
</div>
</footer>
</div>
<script src="./app.js"></script>
</body>
</html>