Files

88 lines
2.7 KiB
PHP
Raw Permalink Normal View History

<?php
// 403 Forbidden Error Page
http_response_code(403);
// Security headers
?>
<!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 AI Automation</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Lato:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 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>
2026-03-02 11:44:06 +00:00
<link rel="stylesheet" href="/assets/css/main.css?v=20260222">
</head>
<body>
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
<div class="container">
<div class="logo">
<h3>UK AI Automation</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>