-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.php
30 lines (29 loc) · 1.24 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
<?php
require_once "includes/config.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Error - <?php echo $_SERVER['SERVER_NAME'] ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Mukta+Mahee:300,700,800" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<div class="error__wrapper">
<div>
<span>
<strong>Error</strong>
<span>Page not found.</span>
</span>
<p>The page that you are looking for either doesn't exist or you don't have access to view it. Think this is a mistake? Contact the owner using the email provided below.</p>
<div class="mailto">
<i class="fa-regular fa-comment"></i>
<a href="mailto:<?php echo $your_email ?>"><?php echo $your_email ?></a>
</div>
</div>
</div>
</body>
</html>