-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path404.php
106 lines (73 loc) · 4.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/*
Copyright (C) fobrain Tech LTD (2014 - 2024) - All Rights Reserved
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
#####################################################################################################
fobrain (wizgrade open source) app is designed & developed by Igweze Ebele Mark for fobrain Tech LTD
#####################################################################################################
fobrain is Dedicated To Almighty God, My fabulous FAMILY and Amazing Parents.
WEBSITE PHONES/WHATSAPP EMAILS
https://www.fobrain.com +234 - 80 30 716 751 [email protected]
+234 - 80 22 000 490
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Page/Code Explanation~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This script handle 404 page
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
?>
<!-- Meta Head -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="robots" content="ALL">
<meta name="rating" content="GENERAL">
<meta name="distribution" content="GLOBAL">
<meta name="classification" content="school portal, school management system, software, open source school management system, fobrain">
<meta name="copyright" content="wizGrade https://www.wizgrade.com">
<meta name="author" content="IGWEZE EBELE MARK for fobrain Tech LTD">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content="fobrain" />
<meta name="description" content=""/>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./wizGradeTemplates/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./wizGradeTemplates/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./wizGradeTemplates/favicon/favicon-16x16.png">
<link rel="manifest" href="./wizGradeTemplates/favicon/site.webmanifest">
<link rel="mask-icon" href="./wizGradeTemplates/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#bfb3d4">
<meta name="theme-color" content="#ffffff">
<title>404 | wizGrade </title>
<!-- stylesheet -->
<link href="./wizGradeTemplates/css/bootstrap.min.css" rel="stylesheet">
<link href="./wizGradeTemplates/css/bootstrap-reset-4B0082.css" rel="stylesheet">
<link href="./wizGradeTemplates/assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="./wizGradeTemplates/css/pnotify.custom.css" rel="stylesheet">
<link href="./wizGradeTemplates/css/style-4B0082.css" rel="stylesheet">
<link href="./wizGradeTemplates/css/style-responsive.css" rel="stylesheet" />
<!-- / stylesheet -->
<!-- jquery and javascripts -->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltipss and media queries -->
<!--[if lt IE 9]>
<script src="./wizGradeTemplates/js/html5shiv.js"></script>
<script src="./wizGradeTemplates/js/respond.min.js"></script>
<![endif]-->
<!-- / jquery and javascripts -->
</head>
<!-- body -->
<body class="body-404">
<div class="container">
<section class="error-wrapper text-center">
<i class="icon-404 img-circle"></i>
<h1>404</h1>
<h2>Oooooooops, Page Could Not Be Found! <a href="javascript:;" onclick='window.history.go(-1); return false;' >Go Back</a></h2>
</section>
</div>
</body>
<!-- / body -->
</html>