First commit of the new Insider version on docker

This commit is contained in:
2024-03-27 18:20:08 +01:00
parent 7637b068f9
commit be57c29e6e
61 changed files with 13693 additions and 1 deletions

48
views/file-not-found.ejs Normal file
View File

@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fichier non trouvé</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: linear-gradient(to right, #667eea, #764ba2);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
}
.error {
font-size: 1.5rem;
color: darkred;
margin-top: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Fichier non trouvé</h1>
<p>Désolé, le fichier que vous recherchez est introuvable.</p>
<p class="error">Code d'erreur: XyZ789_FileNotFound</p>
</div>
</body>
</html>
</body>
</html>