-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy path404.html
45 lines (45 loc) · 1.38 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | Virtual Business Manager</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #f8f9fa;
}
.error-container {
text-align: center;
padding: 2rem;
background-color: white;
border-radius: 10px;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.error-code {
font-size: 8rem;
font-weight: bold;
color: #dc3545;
line-height: 1;
margin-bottom: 1rem;
}
.error-message {
font-size: 1.5rem;
color: #6c757d;
margin-bottom: 2rem;
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-code">404</div>
<div class="error-message">Oops! Page not found.</div>
<p class="text-muted mb-4">The page you're looking for doesn't exist or has been moved.</p>
<a href="/" class="btn btn-primary">Return to Dashboard</a>
</div>
</body>
</html>