-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
59 lines (57 loc) · 2.09 KB
/
error.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
const back_url = "http://localhost/larava";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title>Page Not Found!</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- site icon -->
<link rel="icon" href="images/fevicon.png" type="image/png" />
<!-- bootstrap css -->
<link rel="stylesheet" href="./public/css/bootstrap.min.css" />
<!-- site css -->
<link rel="stylesheet" href="./public/Admin/style.css" />
<!-- responsive css -->
<link rel="stylesheet" href="./public/Admin/css/responsive.css" />
<!-- color css -->
<link rel="stylesheet" href="./public/Admin/css/colors.css" />
<!-- select bootstrap -->
<link rel="stylesheet" href="./public/Admin/css/bootstrap-select.css" />
<!-- scrollbar css -->
<link rel="stylesheet" href="./public/Admin/css/perfect-scrollbar.css" />
<!-- custom css -->
<link rel="stylesheet" href="./public/Admin/css/custom.css" />
<!-- calendar file css -->
<link rel="stylesheet" href="./public/Admin/js/semantic.min.css" />
</head>
<body class="inner_page error_404">
<div class="full_container">
<div class="container">
<div class="center verticle_center full_height">
<div class="error_page">
<div class="center">
<div class="error_icon">
<img class="img-responsive" src="./public/Admin/images/layout_img/error.png" alt="#">
</div>
</div>
<br>
<h3>PAGE NOT FOUND !</h3>
<P>YOU SEEM TO BE TRYING TO FIND HIS WAY HOME</P>
<div class="center"><a class="main_bt" href="<?php echo back_url;?>">Go To Home Page</a></div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
</body>
</html>