42 lines
931 B
PHP
42 lines
931 B
PHP
<?php
|
|
// Backend API - No direct access
|
|
http_response_code(403);
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Access Denied</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
|
|
background: #0a0a0a;
|
|
color: #999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
.message {
|
|
text-align: center;
|
|
}
|
|
.message h1 {
|
|
font-size: 3rem;
|
|
color: #333;
|
|
margin: 0 0 20px 0;
|
|
}
|
|
.message p {
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="message">
|
|
<h1>403</h1>
|
|
<p>Access Denied</p>
|
|
</div>
|
|
</body>
|
|
</html>
|