forked from lucasvaltl/Pano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
70 lines (46 loc) · 1.48 KB
/
Copy path404.php
File metadata and controls
70 lines (46 loc) · 1.48 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
65
66
67
68
69
70
<?php
//ob_start needed to allow redirecting after login
ob_start();
//session_start() needed to use global session variabls $_SESSION etc
session_start();
include('includes/config.php');
?>
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<script src="https://use.fontawesome.com/ed51c90fe4.js"></script>
<link rel="stylesheet" href="css/offset.css">
<link rel="stylesheet" href="css/style.css">
<title>Pano - Log In</title>
</head>
<body id="gradhome">
<?php
include('includes/header.php');
?>
<div id="left"></div>
<div id="right"></div>
<div id="top"></div>
<div id="bottom"></div>
<div class="container content center-center ">
<h2>404 Page Not Found!</h2>
<br>
<h3>Oops!</h3>
<br>
<h4>Nothing Panoramic to see here!</h4>
<br>
<button class="btn btn-primary btn-info" onclick="goBack()">
<span class="glyphicon glyphicon-hand-left"></span> Go Back</button>
<script>
function goBack() {
window.history.back();
}
</script>
</div>
</body>
<?php
include('includes/footer.php');
?>
</html>