-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
72 lines (64 loc) · 1.99 KB
/
Copy path404.php
File metadata and controls
72 lines (64 loc) · 1.99 KB
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
<?php
// Set the HTTP response code to 404 to indicate that the page was not found
http_response_code(404);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/dashboard.css" />
<link rel="icon" href="assets/logo.png" type="image/png">
<title>Page Not Found | GBC Internet Banking</title>
<style>
.error-container {
text-align: center;
padding: 50px;
background-color: #fff;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
max-width: 600px;
margin: 100px auto;
}
.error-container h1 {
font-size: 60px;
color: #ff4e4e;
}
.error-container p {
font-size: 18px;
color: #333;
margin-bottom: 20px;
}
.back-link {
font-size: 16px;
color: #0064d2;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header__content">
<div class="header__logo">
<a href="./dashboard.php"><img src="./assets/logo.png" alt="Bank Logo"></a>
</div>
<h1>404 - Page Not Found</h1>
</div>
</header>
<!-- Main Content -->
<main class="dashboard">
<div class="error-container">
<h1>Oops!</h1>
<p>Sorry, the page you are looking for could not be found.</p>
<p><a href="javascript:history.back()" class="back-link">Return to the previous page</a></p>
</div>
</main>
<footer class="footer">
<span class="author">©2024 Global Banking Corporation Limited. All rights reserved.</span>
</footer>
</body>
</html>