Sindbad~EG File Manager
<?php
$pageTitle = "404 - Page Not Found";
require_once 'config/config.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $pageTitle; ?></title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg { background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #FCD34D 100%); }
</style>
</head>
<body class="bg-gray-50">
<div class="min-h-screen flex items-center justify-center px-4">
<div class="text-center">
<div class="gradient-bg rounded-full w-32 h-32 flex items-center justify-center mx-auto mb-8">
<i class="fas fa-exclamation-triangle text-6xl text-white"></i>
</div>
<h1 class="text-6xl font-bold text-gray-800 mb-4">404</h1>
<h2 class="text-2xl font-semibold text-gray-700 mb-4">Page Not Found</h2>
<p class="text-gray-600 mb-8">The page you're looking for doesn't exist or has been moved.</p>
<div class="space-x-4">
<a href="<?php echo BASE_URL; ?>dashboard.php"
class="inline-block bg-gradient-to-r from-blue-500 to-blue-600 text-white px-6 py-3 rounded-lg hover:from-blue-600 hover:to-blue-700 transition">
<i class="fas fa-home mr-2"></i>Go to Dashboard
</a>
<button onclick="history.back()"
class="inline-block bg-gray-500 text-white px-6 py-3 rounded-lg hover:bg-gray-600 transition">
<i class="fas fa-arrow-left mr-2"></i>Go Back
</button>
</div>
</div>
</div>
</body>
</html>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists