-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_404.php
44 lines (39 loc) · 1.46 KB
/
error_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
39
40
41
42
43
44
<?php include 'header.php'; ?>
<div class="content">
<div class="panel panel-flat">
<div class="panel-heading">
<center>
</div>
<div class="panel-body">
<!-- Error title -->
<div class="text-center content-group">
<h1 class="error-title">404</h1>
<h5>Oops, an error has occurred. Page not found!</h5>
</div>
<!-- /error title -->
<!-- Error content -->
<div class="row">
<div class="col-lg-4 col-lg-offset-4 col-sm-6 col-sm-offset-3">
<form action="#" class="main-search">
<div class="input-group content-group">
<input type="text" class="form-control input-lg" placeholder="Search">
<div class="input-group-btn">
<button type="submit" class="btn bg-slate-600 btn-icon btn-lg"><i class="icon-search4"></i></button>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="index.php" class="btn btn-primary btn-block content-group"><i class="icon-circle-left2 position-left"></i> Go to dashboard</a>
</div>
<div class="col-sm-6">
</div>
</div>
</form>
</div>
</div>
<!-- /error wrapper -->
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>