Files
CDN-APP-INSIDER/views/file-not-found.ejs

49 lines
1.1 KiB
Plaintext

<!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>