-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-not-found.php
More file actions
64 lines (38 loc) · 1.1 KB
/
page-not-found.php
File metadata and controls
64 lines (38 loc) · 1.1 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<?php include("inc/meta.php"); ?>
<Title>
<?php include("inc/page-index.php"); ?>
</Title>
<?php include("inc/stylesheet.php"); ?>
<?php include("inc/head.php"); ?>
</head>
<body>
<?php include("inc/background-image.php"); ?>
<div id="container">
<?php include("inc/header.php"); ?>
<?php include("inc/widemenu.php"); ?>
<?php include("inc/sidebar-left.php"); ?>
<div id="content">
<?php include("inc/plugin01.php"); ?>
<div style="width:100%;text-align:center;">
<h2>The file you are looking for doesn't exist!</h2>
<input width="150px" style="border-style:solid;border-width:1px;border-color:#666;border-radius:3px;"/>
<p class="icon-label"><a href="view-entries.php">Search for another page</a></p>
<p class="icon-label"><a onclick="goBack()" style="cursor:pointer;">Return to the previous page</a></p>
</div>
<?php include("inc/plugin02.php"); ?>
</div>
<?php include("inc/sidebar-right.php"); ?>
<?php include("inc/footer.php"); ?>
</div>
<?php include("inc/scripts.php"); ?>
<script>
function goBack()
{
window.history.back()
}
</script>
</body>
</html>