Files
CDN-APP-INSIDER/views/unauthorized.ejs

54 lines
1.2 KiB
Plaintext

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accès non autorisé</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
}
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 50px auto;
max-width: 400px;
}
h1 {
color: #e74c3c;
}
p {
color: #333;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #3498db;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="container">
<h1>Accès non autorisé</h1>
<p>Vous n'êtes pas autorisé à accéder à cette ressource.</p>
<a class="button" href="/">Retour à la page d'accueil</a>
</div>
</body>
</html>