-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_404.php
More file actions
30 lines (30 loc) · 1.02 KB
/
error_404.php
File metadata and controls
30 lines (30 loc) · 1.02 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
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page Not Found</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:200,300,700' rel='stylesheet' type='text/css'>
<link href="/assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="/assets/css/error-page.css" rel="stylesheet" />
</head>
<body>
<div id="container">
<span class="glyphicon glyphicon-question-sign"></span>
<h1>Oh noes!</h1>
<p>We're truly sorry, but our magical army of unicorns and geeks couldn't find the page you requested.</p>
<p class="buttons">
<form action="/search" method="get">
<input type="text" name="q" class="form-control" placeholder="Search posts and users..." />
<button class="btn btn-primary">Search</button>
</form>
</p>
<p>
<a href="javascript:history.back();" class="back">← Go Back</a>
<a href="/" class="back">Go to Homepage →</a>
</p>
<footer>
Copyright © <?=date("Y")?> Alphasquare.
</footer>
</div>
</body>
</html>