php_engine/app/template/404.php
2025-01-20 19:54:53 +03:00

18 lines
619 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<link href="./app/assets/css/style.css" rel="stylesheet">
</head>
<body>
<div className="flex flex-col items-center justify-center h-screen bg-gray-100">
<h1 className="text-6xl font-bold text-red-500">404</h1>
<p className="mt-4 text-xl">Oops! Page Not Found</p>
<a href="/" className="mt-6 text-blue-500 hover:underline">
Go to Homepage
</a>
</div>
</body>
</html>