86 lines
2.4 KiB
PHP
86 lines
2.4 KiB
PHP
|
|
<?php
|
||
|
|
// 403 Forbidden Error Page
|
||
|
|
http_response_code(403);
|
||
|
|
|
||
|
|
// Security headers
|
||
|
|
header('X-Content-Type-Options: nosniff');
|
||
|
|
header('X-Frame-Options: DENY');
|
||
|
|
header('X-XSS-Protection: 1; mode=block');
|
||
|
|
?>
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Access Forbidden - UK Data Services</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-family: 'Arial', sans-serif;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
color: white;
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
text-align: center;
|
||
|
|
max-width: 600px;
|
||
|
|
padding: 40px;
|
||
|
|
background: rgba(255, 255, 255, 0.1);
|
||
|
|
border-radius: 20px;
|
||
|
|
backdrop-filter: blur(10px);
|
||
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-size: 4rem;
|
||
|
|
margin: 0 0 20px 0;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
margin: 0 0 30px 0;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
p {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
.btn {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 15px 30px;
|
||
|
|
background: rgba(255, 255, 255, 0.2);
|
||
|
|
color: white;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 10px;
|
||
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
||
|
|
transition: all 0.3s ease;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.btn:hover {
|
||
|
|
background: rgba(255, 255, 255, 0.3);
|
||
|
|
border-color: rgba(255, 255, 255, 0.5);
|
||
|
|
transform: translateY(-2px);
|
||
|
|
}
|
||
|
|
.logo {
|
||
|
|
margin-bottom: 30px;
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="logo">
|
||
|
|
<h3>UK Data Services</h3>
|
||
|
|
</div>
|
||
|
|
<h1>403</h1>
|
||
|
|
<h2>Access Forbidden</h2>
|
||
|
|
<p>Sorry, you don't have permission to access this resource. This incident has been logged for security purposes.</p>
|
||
|
|
<a href="/" class="btn">Return to Homepage</a>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|