Spaces:
Sleeping
Sleeping
| <!-- templates/404.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> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| </head> | |
| <body class="flex flex-col items-center justify-center h-screen bg-gray-100"> | |
| <h1 class="text-6xl font-bold text-gray-700">404</h1> | |
| <p class="text-xl text-gray-500">Oops! The page you are looking for does not exist.</p> | |
| <a href="/login" class="mt-4 px-4 py-2 bg-blue-500 text-white rounded-lg">Go to Login Page</a> | |
| </body> | |
| </html> | |