-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror-404.php
41 lines (34 loc) · 1.05 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
<?php
include("./layouts/session.php");
include 'conn.php'; // Include database connection
// Establish the connection to the user's database
$conn = connectMainDB();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'layouts/title-meta.php'; ?>
<?php include 'layouts/head-css.php'; ?>
</head>
<body class="error-page">
<div id="global-loader" >
<div class="whirly-loader"> </div>
</div>
<!-- Main Wrapper -->
<div class="main-wrapper">
<div class="error-box">
<div class="error-img">
<img src="assets/img/authentication/error-404.png" class="img-fluid" alt="">
</div>
<h3 class="h2 mb-3">Oops, something went wrong</h3>
<p>Error 404 Page not found. Sorry the page you looking for
doesn’t exist or has been moved</p>
<a href="index.php" class="btn btn-primary">Back to Dashboard</a>
</div>
</div>
<!-- /Main Wrapper -->
<?php include 'layouts/customizer.php'; ?>
<!-- JAVASCRIPT -->
<?php include 'layouts/vendor-scripts.php'; ?>
</body>
</html>