-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
26 lines (26 loc) · 1.09 KB
/
Copy path404.php
File metadata and controls
26 lines (26 loc) · 1.09 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
25
26
<?php http_response_code(404); ?>
<!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>404 Not Found · 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;">404</h1>
<p style="color:var(--muted);">That page does not exist. It may have moved, or it never did.</p>
<p style="margin-top:20px;">
<a class="toggle-button" href="/">Home</a>
<a class="toggle-button" href="/trace">Trace</a>
<a class="toggle-button" href="/methodology">Methodology</a>
</p>
</div>
<?php require __DIR__ . '/lib/footer.php'; ?>
</body>
</html>