-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
47 lines (41 loc) · 1.85 KB
/
error.html
File metadata and controls
47 lines (41 loc) · 1.85 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Organisez, explorez et regardez vos films et séries préférés avec StreamIt." />
<meta name="keywords" content="movies, series, streaming, StreamIt, films, TV shows" />
<meta name="author" content="LoupesDEV" />
<meta name="theme-color" content="#181818" />
<meta property="og:title" content="StreamIt" />
<meta property="og:description"
content="Organisez, explorez et regardez vos films et séries préférés avec StreamIt." />
<meta property="og:image" content="https://www.matheo-pichotmoise.fr/StreamIt/medias/logo.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.matheo-pichotmoise.fr/StreamIt/" />
<title>StreamIt</title>
<link rel="stylesheet" href="css/variables.css" />
<link rel="stylesheet" href="css/error.css" />
<link href="medias/logo.png" rel="icon" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet" />
</head>
<body>
<!-- Error Page Container -->
<div class="container">
<img src="medias/logo.png" alt="StreamIt Logo" class="logo" />
<div class="code-badge" id="error-code" aria-label="Code d'erreur">404</div>
<h1>Erreur!</h1>
<div id="error-message" class="error-message"></div>
<a href="index.html" class="back-btn">Revenir à l'accueil</a>
</div>
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker.register("sw.js");
});
}
</script>
<script type="module" src="js/errorHandler.js"></script>
</body>
</html>