-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
24 lines (21 loc) · 724 Bytes
/
Copy path404.php
File metadata and controls
24 lines (21 loc) · 724 Bytes
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
/**
* @author cir8
*/
echo'<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/x-icon" href="imgs/favicon.ico" />
<link rel="stylesheet" href="styles/errors.css">
<title>GLimPSE :: 404 Not Found</title>
</head>
<body>
<div class="error_page">
<h1>I\'m sorry... :(</h1>
<p>Looks like the page you are looking for cannot be found...</p>
<p><a href="index.php">Blue Blistering Barnacles! Take me to safety!</a></p>
</div>
</body>
</html>';
?>