forked from GultHQ/flo-exchange
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpageNotFound.php
26 lines (25 loc) · 1.29 KB
/
pageNotFound.php
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>ERROR</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body>
<div id="big_wrapper" class="container-fluid">
<div style="margin-top: 50px;"></div>
<div class="panel panel-default center-block">
<div class="alert alert-danger" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true" style="font-size: 70px;"></span>
<span class="sr-only">Error:</span>
<span style="font-size: 70px;">Woops! Page Not Found.</span>
</div>
<div class="panel-body">
<h4>Sorry! the page you were looking for does not exists. Press back to return or click <a href="http://ranchimall.net">here</a>.</h4>
</div>
</div>
</div>
<footer style="text-align: center; position: fixed; bottom: 0; width: 100%;">© Ranchi Mall <?=date('Y');?></footer>
</body>
</html>