-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path403.php
More file actions
24 lines (24 loc) · 1.03 KB
/
Copy path403.php
File metadata and controls
24 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php http_response_code(403); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#5271ff">
<meta name="robots" content="noindex">
<title>403 Forbidden · MWEBscan</title>
<link rel="shortcut icon" href="/assets/favicon.png"/>
<link rel="stylesheet" href="/assets/style.css?v=8">
</head>
<body>
<?php require __DIR__ . '/lib/nav.php'; ?>
<div id="main" style="text-align:center;">
<h1 style="font-size:3.5em; margin:30px 0 0;">403</h1>
<p style="color:var(--muted);">You do not have access to that. Data files and source are not browsable here; the analysis lives on the pages and the <a href="/api-docs">API</a>.</p>
<p style="margin-top:20px;">
<a class="toggle-button" href="/">Home</a>
</p>
</div>
<?php require __DIR__ . '/lib/footer.php'; ?>
</body>
</html>