-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmissing.php
More file actions
25 lines (22 loc) · 765 Bytes
/
missing.php
File metadata and controls
25 lines (22 loc) · 765 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
25
<?php include("functions.php"); ?>
<html>
<title>IDidIt - 404</title>
<head>
<link href="styles/style.css" rel="stylesheet" type="text/css">
</head>
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/jquery.tokeninput.js"></script>
<link rel="stylesheet" type="text/css" href="styles/token-input.css" />
<body>
<?php include("Components/header.php"); ?>
<div class="page">
<div class="content">
<div class="main-content">
<h2>404 Error Page</h2>
<p>This page does not exist, not sure how you got here</p>
</div>
</div>
<script type="text/javascript" src="scripts/functions.js"></script>
<?php include("Components/footer.php"); ?>
</body>
</html>