54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>No Access</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
padding: 20px;
|
|
background: white;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
color: #dc3545;
|
|
}
|
|
p {
|
|
font-size: 1rem;
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #007bff;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Access Denied</h1>
|
|
<p>Sorry, you do not have permission to access this page.</p>
|
|
<p><a href="/">Return to Homepage</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|