forked from UKSOURCE/cms.hailearning.edu.vn
105 lines
2.6 KiB
Plaintext
105 lines
2.6 KiB
Plaintext
<!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 | ULDP Management</title>
|
|
<link rel="icon" type="image/png" href="/img/favicon.png" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="/assets/css/variables.css">
|
|
<style>
|
|
body {
|
|
font-family: var(--font-family, "Inter", sans-serif);
|
|
background: var(--bg-body, #f0f2f7);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.error-wrap {
|
|
text-align: center;
|
|
padding: 2rem 1.5rem;
|
|
max-width: 480px;
|
|
}
|
|
|
|
.error-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
background: var(--primary-soft, rgba(10,35,71,0.07));
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.error-badge i {
|
|
font-size: 3rem;
|
|
color: var(--primary-color, #0a2347);
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.error-code {
|
|
font-size: 5rem;
|
|
font-weight: 800;
|
|
color: var(--primary-color, #0a2347);
|
|
line-height: 1;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.error-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #1e293b;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.error-desc {
|
|
color: #64748b;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 2rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.btn-home {
|
|
background: var(--primary-color, #0a2347);
|
|
color: #fff;
|
|
border: none;
|
|
padding: 0.6rem 1.5rem;
|
|
border-radius: 6px;
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-home:hover {
|
|
background: #1a3a6b;
|
|
color: #fff;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(10,35,71,0.25);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-wrap">
|
|
<div class="error-badge">
|
|
<i class="fas fa-map-signs"></i>
|
|
</div>
|
|
<div class="error-code">404</div>
|
|
<h1 class="error-title">Page Not Found</h1>
|
|
<p class="error-desc">The page you're looking for doesn't exist or has been moved.</p>
|
|
<a href="/admin/dashboard" class="btn-home">
|
|
<i class="fas fa-arrow-left"></i> Back to Dashboard
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|