30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>404 Not Found - nginx auth demo</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-900 text-white min-h-screen flex items-center justify-center">
|
|
<div class="text-center space-y-6 max-w-md mx-auto">
|
|
<h1 class="text-6xl font-bold text-yellow-400">404</h1>
|
|
<h2 class="text-2xl font-semibold text-gray-200">Page Not Found</h2>
|
|
<p class="text-gray-300">The page you're looking for doesn't exist</p>
|
|
|
|
<div class="bg-gray-800 rounded p-4 text-sm">
|
|
<p class="text-gray-300 mb-2">Available pages:</p>
|
|
<div class="space-y-1">
|
|
<p><a href="/" class="text-blue-400 hover:underline">/ (home)</a></p>
|
|
<p><a href="/admin" class="text-red-400 hover:underline">/admin (requires admin role)</a></p>
|
|
<p><a href="/login" class="text-green-400 hover:underline">/login</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="space-x-4">
|
|
<a href="/" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded text-white">Go Home</a>
|
|
<a href="/login" class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded">Login</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|