gdc_cmod/app/Views/errors/notfound.php
2026-01-22 17:02:47 +07:00

38 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="en" data-theme="corporate">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found</title>
<link href="<?= base_url('css/daisyui.min.css'); ?>" rel="stylesheet" type="text/css" />
<script src="<?= base_url('js/tailwind.min.js'); ?>"></script>
<link href="<?= base_url('css/themes.min.css'); ?>" rel="stylesheet" type="text/css" />
<script src="<?= base_url('js/fontawesome.min.js'); ?>"></script>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}
</style>
</head>
<body class="bg-base-200 min-h-screen flex items-center justify-center p-4">
<div class="card bg-base-100 shadow-xl w-full max-w-md text-center">
<div class="card-body items-center">
<div class="text-base-content/20 text-8xl mb-2">
<i class="fa fa-ghost"></i>
</div>
<h1 class="text-4xl font-bold text-base-content mb-1">404</h1>
<h2 class="text-xl font-semibold mb-2">Page Not Found</h2>
<p class="text-base-content/70 mb-6">Oops! The page you are looking for does not exist or has been moved.
</p>
<div class="card-actions">
<a href="<?= base_url() ?>" class="btn btn-primary btn-sm">
<i class="fa fa-arrow-left mr-2"></i> Back to Dashboard
</a>
</div>
</div>
</div>
</body>
</html>