Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Login - SEO Wizards Unleashed</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12 flex items-center justify-center"> | |
| <div class="w-full max-w-md bg-white rounded-xl shadow-md overflow-hidden p-8"> | |
| <div class="text-center mb-8"> | |
| <h1 class="text-2xl font-bold text-gray-900 mb-2">Welcome Back, Wizard!</h1> | |
| <p class="text-gray-600">Log in to access your SEO magic tools</p> | |
| </div> | |
| <form class="space-y-6"> | |
| <div> | |
| <label class="block text-gray-700 font-medium mb-2">Email</label> | |
| <input type="email" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary" required> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 font-medium mb-2">Password</label> | |
| <input type="password" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:ring-primary focus:border-primary" required> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-primary focus:ring-primary"> | |
| <span class="ml-2 text-gray-700">Remember me</span> | |
| </label> | |
| <a href="/forgot-password.html" class="text-sm text-primary hover:underline">Forgot password?</a> | |
| </div> | |
| <button type="submit" class="w-full bg-primary hover:bg-primary-600 text-white font-medium py-3 px-6 rounded-lg shadow-md transition-all"> | |
| Log In | |
| </button> | |
| </form> | |
| <div class="mt-6 text-center"> | |
| <p class="text-gray-600">Don't have an account? <a href="/signup.html" class="text-primary hover:underline">Sign up</a></p> | |
| </div> | |
| <div class="mt-8 border-t border-gray-200 pt-6"> | |
| <p class="text-sm text-gray-500 text-center">Free accounts have limited features and include ads</p> | |
| </div> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |