berkemert's picture
Promote version 139d6bf to main
7fb31ee verified
Raw
History Blame Contribute Delete
3.12 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - BavulumKatar'da</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>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#002366',
secondary: '#D4AF37',
}
}
}
}
</script>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation Component -->
<custom-nav></custom-nav>
<!-- Login Form -->
<section class="min-h-screen flex items-center justify-center p-4">
<div class="bg-white rounded-xl shadow-lg overflow-hidden w-full max-w-md">
<div class="bg-primary text-white p-6 text-center relative">
<a href="index.html" class="absolute left-4 top-1/2 transform -translate-y-1/2 text-white hover:text-secondary transition duration-300">
<i data-feather="arrow-left" class="w-6 h-6"></i>
</a>
<h1 class="text-2xl font-bold">Welcome Back</h1>
<p class="text-white/80">Access your global shopping account</p>
</div>
<form class="p-6">
<div class="mb-4">
<label for="email" class="block text-gray-700 text-sm font-medium mb-1">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-secondary" required>
</div>
<div class="mb-6">
<label for="password" class="block text-gray-700 text-sm font-medium mb-1">Password</label>
<input type="password" id="password" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-secondary" required>
<div class="text-right mt-1">
<a href="#" class="text-sm text-primary hover:underline">Forgot password?</a>
</div>
</div>
<button type="submit" class="w-full bg-secondary hover:bg-secondary/90 text-primary font-bold py-3 px-4 rounded-lg transition duration-300">
Log In
</button>
<div class="text-center mt-4">
<p class="text-gray-600">Don't have an account? <a href="signup.html" class="text-primary font-medium hover:underline">Sign Up</a></p>
</div>
</form>
</div>
</section>
<!-- Footer Component -->
<custom-footer></custom-footer>
<!-- Components -->
<script src="components/nav.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>