forked from Magic-Fishes/Ecole-Directe-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
220 lines (189 loc) · 8.76 KB
/
index.html
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/images/EDP-logo-favicon-light.ico" type="image/x-icon" media="(prefers-color-scheme: light)">
<link rel="icon" href="/images/EDP-logo-favicon-dark.ico" type="image/x-icon" media="(prefers-color-scheme: dark)">
<!-- INTER font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<!-- embed preview -->
<meta name="theme-color" content="#181829" id="theme-color">
<meta name="description"
content="Ecole Directe Plus est une version améliorée d'EcoleDirecte (non-affiliée), offrant une meilleure expérience avec une interface moderne et intuitive, enrichie de fonctionnalités exclusives comme le calcul automatique de la moyenne générale, le tout gratuitement.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="ecole-directe.plus">
<meta property="og:site_name" content="Ecole Directe Plus">
<meta property="og:title" content="Ecole Directe Plus">
<meta property="og:description"
content="Ecole Directe Plus est une version améliorée d'EcoleDirecte (non-affiliée), offrant une meilleure expérience avec une interface moderne et intuitive, enrichie de fonctionnalités exclusives comme le calcul automatique de la moyenne générale, le tout gratuitement.">
<meta property="og:image" content="https://i.ibb.co/rM10bSb/Cover-2.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Ecole Directe Plus">
<meta property="twitter:description"
content="Ecole Directe Plus est une version améliorée d'EcoleDirecte (non-affiliée), offrant une meilleure expérience avec une interface moderne et intuitive, enrichie de fonctionnalités exclusives comme le calcul automatique de la moyenne générale, le tout gratuitement.">
<meta property="twitter:image" content="https://i.ibb.co/rM10bSb/Cover-2.png">
<title>Ecole Directe Plus</title>
</head>
<body>
<noscript>Ecole Directe Plus ne peut pas fonctionner sans Javascript ! Veuillez l'activer dans les paramètres de votre navigateur.</noscript>
<div id="loading-start">
<style>
body {
background-color: rgb(24, 24, 41);
}
.light body {
background-color: rgb(228, 228, 255);
}
#loading-start {
position: absolute;
inset: 0;
z-index: 999;
}
#loading-start {
background-color: rgb(24, 24, 41);
}
.light #loading-start {
background-color: rgb(228, 228, 255);
}
#loading-start.fade-out {
animation: dark-blur-fade-out 0.4s ease-in-out forwards;
}
.light #loading-start.fade-out {
animation: light-blur-fade-out 0.4s ease-in-out forwards;
}
svg#loading-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 80px;
animation: dark-shine 1.5s ease-in-out infinite alternate;
}
.light svg#loading-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 80px;
animation: light-shine 1.5s ease-in-out infinite alternate;
}
svg#loading-logo .start {
stop-color: #B4C9FF;
}
svg#loading-logo .end {
stop-color: #C1B7FF;
}
.light svg#loading-logo .start {
stop-color: #1743B5;
}
.light svg#loading-logo .end {
stop-color: #5B42F1;
}
#loading-start.fade-out svg#loading-logo {
animation: fade-out 0.25s ease-out forwards;
}
@keyframes dark-shine {
from {
-webkit-filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.4));
filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.4));
}
to {
-webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}
}
@keyframes light-shine {
/* rgb(63, 66, 217) */
from {
-webkit-filter: drop-shadow(0 0 0px rgba(63, 66, 217, 0.6));
filter: drop-shadow(0 0 0px rgba(63, 66, 217, 0.6));
}
to {
-webkit-filter: drop-shadow(0 0 20px rgba(63, 66, 217, 0.6));
filter: drop-shadow(0 0 20px rgba(63, 66, 217, 0.6));
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes dark-blur-fade-out {
0% {
background-color: rgba(24, 24, 41, 1);
backdrop-filter: blur(8px);
}
100% {
background-color: rgba(24, 24, 41, 0);
backdrop-filter: blur(0px);
}
}
@keyframes light-blur-fade-out {
0% {
background-color: rgba(228, 228, 255, 1);
backdrop-filter: blur(8px);
}
100% {
background-color: rgba(228, 228, 255, 0);
backdrop-filter: blur(0px);
}
}
</style>
<svg role="img" id="loading-logo" viewBox="0 0 91 86" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M89.9985 24V0H31.9985C21.3319 0.833333 0 7.3 0 38.5C5.50049 26.5 17.499 24 21.4985 24H89.9985Z"
fill="url(#paint0_linear_740_7)" />
<path
d="M90.0017 55V31.5H27.0016C-9.00047 31.5 -9.00055 86 27.0016 86H90.0017V62.5H27.0016C22.0011 62.5 22.0013 55 27.0016 55H90.0017Z"
fill="url(#paint0_linear_740_7)" />
<defs>
<linearGradient id="paint0_linear_740_7" x1="0" y1="18.5785" x2="86.6385" y2="18.5785"
gradientUnits="userSpaceOnUse">
<stop class="start" stop-color="#B4C9FF" />
<stop class="end" offset="1" stop-color="#C1B7FF" />
</linearGradient>
</defs>
</svg>
<script>
try {
function getDisplayTheme() {
const oldActiveAccount = parseInt(localStorage.getItem("oldActiveAccount") ?? 0);
const displayThemeFromLs = JSON.parse((localStorage.getItem("userSettings") ?? "[{}]"))[oldActiveAccount]?.displayTheme;
if (displayThemeFromLs === undefined || displayThemeFromLs === "auto") {
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
return "dark";
} else {
return "light";
}
} else {
return displayThemeFromLs;
}
}
document.documentElement.classList.add(getDisplayTheme());
} catch (error) {
console.error("Error: theme couldn't be read from splashScreen");
console.error(error);
document.documentElement.classList.add("dark");
}
</script>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/serviceWorker.js")
.catch(function (error) {
console.error("Échec de l'enregistrement du Service Worker:", error);
});
}
</script>
</div>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>