| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>File Not Found - HokoriTemp</title>
- <link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
- <link rel="stylesheet" href="/static/css/styles.css">
- <script src="https://cdn.tailwindcss.com"></script>
- </head>
- <body class="bg-gray-50 dark:bg-gray-900 min-h-screen flex items-center justify-center">
- <div class="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-8 max-w-md text-center">
- <svg class="w-16 h-16 mx-auto mb-4 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
- </svg>
- <h1 class="text-2xl font-bold text-gray-900 dark:text-white mb-2">File Not Found</h1>
- <p class="text-gray-600 dark:text-gray-300 mb-4">The file you are trying to access does not exist or has expired.</p>
- <a href="/" class="inline-block mt-2 px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition-colors">Go to Home</a>
- </div>
- </body>
- </html>
|