-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
executable file
·38 lines (36 loc) · 1.58 KB
/
404.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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<?php include('assets/_partials/head.php');?>
<body>
<div class="middle-box">
<div class="row">
<div class="col-sm-12">
<div class="error-text">
<h1>404</h1>
<h3><span>Page</span><br class="hidden-xs"> Not Found</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="error-desc">
<p>Sorry, but the page you are looking for has note been found. Try checking the URL for error, then hit the
refresh button on your browser or try found something else in our app.</p>
<form class="navbar-form" role="search">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for page">
<div class="input-group-btn">
<button class="btn btn-add" type="submit">Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="assets/plugins/jQuery/jquery-1.12.4.min.js" type="text/javascript"></script>
<!-- bootstrap js-->
<script src="assets/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>