72 lines
2 KiB
HTML
72 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>403 - Access Forbidden</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #f8f9fa;
|
|
margin: 0;
|
|
padding: 50px;
|
|
}
|
|
.error-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
.error-code {
|
|
font-size: 72px;
|
|
font-weight: bold;
|
|
color: #dc3545;
|
|
margin: 0;
|
|
}
|
|
.error-message {
|
|
font-size: 24px;
|
|
color: #6c757d;
|
|
margin: 20px 0;
|
|
}
|
|
.error-description {
|
|
font-size: 16px;
|
|
color: #495057;
|
|
margin: 20px 0;
|
|
}
|
|
.nav-links {
|
|
margin-top: 30px;
|
|
}
|
|
.nav-links a {
|
|
display: inline-block;
|
|
margin: 0 10px;
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.nav-links a:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<h1 class="error-code">403</h1>
|
|
<h2 class="error-message">Access Forbidden</h2>
|
|
<p class="error-description">
|
|
You don't have permission to access this resource.
|
|
You may need to log in with appropriate credentials or your current user role doesn't have access to this page.
|
|
</p>
|
|
<div class="nav-links">
|
|
<a href="/">Go Home</a>
|
|
<a href="/login.html">Login</a>
|
|
<a href="/logout">Logout</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|