-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
27 lines (25 loc) · 943 Bytes
/
Copy patherror.php
File metadata and controls
27 lines (25 loc) · 943 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
26
27
<?php
$includesPath = "cms/includes";
include "$includesPath/setupvars.php";
setupvars($includesPath);
?>
<html lang="en">
<head>
<title><?php print($PAGETITLE); ?> - Error</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>Sorry, something went wrong :(</h1>
<p>The page you were trying to reach could not be loaded.</p>
<h2><a href="javascript:window.history.back();">Go back one page</a></h2>
</div>
<div class="text-center" style="padding-top: 30px; color:#555753;">
<p><?php print($FOOTERTEXT); ?></p>
</div>
</body>
</html>