56 lines
1.4 KiB
HTML
56 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>404 - Page Not Found</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.error-container {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
h1 {
|
|
color: #e74c3c;
|
|
font-size: 72px;
|
|
margin: 0;
|
|
}
|
|
h2 {
|
|
color: #333;
|
|
margin: 20px 0;
|
|
}
|
|
p {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 10px 20px;
|
|
background: #3498db;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
}
|
|
.back-link:hover {
|
|
background: #2980b9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<h1>404</h1>
|
|
<h2>Page Not Found</h2>
|
|
<p>The page you are looking for doesn't exist or has been moved.</p>
|
|
<p>Try checking the URL or use the navigation menu.</p>
|
|
<a href="/" class="back-link">← Back to Dashboard</a>
|
|
</div>
|
|
</body>
|
|
</html> |