file_not_found.html 1.1 KB

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>File Not Found - HokoriTemp</title>
  6. <link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
  7. <link rel="stylesheet" href="/static/css/styles.css">
  8. <script src="https://cdn.tailwindcss.com"></script>
  9. </head>
  10. <body class="bg-gray-50 dark:bg-gray-900 min-h-screen flex items-center justify-center">
  11. <div class="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-8 max-w-md text-center">
  12. <svg class="w-16 h-16 mx-auto mb-4 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  13. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
  14. </svg>
  15. <h1 class="text-2xl font-bold text-gray-900 dark:text-white mb-2">File Not Found</h1>
  16. <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>
  17. <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>
  18. </div>
  19. </body>
  20. </html>