ila / login.html
buosam's picture
Iraq Leadership Academy Website, Login and Signup, latest Programs, Latest Announcements, Student Portal, Admin Dashboard, make it sleek design, Professional - Initial Deployment
da8124d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Iraq Leadership Academy</title>
<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>
<style>
.auth-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.input-focus:focus {
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
</style>
</head>
<body class="font-sans antialiased bg-gray-50">
<div class="min-h-screen flex">
<!-- Left Column - Form -->
<div class="flex-1 flex flex-col justify-center py-12 px-4 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
<div class="mx-auto w-full max-w-sm lg:w-96">
<div>
<div class="flex items-center">
<i data-feather="award" class="h-8 w-8 text-blue-600"></i>
<span class="ml-2 text-xl font-bold text-blue-600">Iraq Leadership Academy</span>
</div>
<h2 class="mt-6 text-3xl font-extrabold text-gray-900">Sign in to your account</h2>
<p class="mt-2 text-sm text-gray-600">
Or <a href="signup.html" class="font-medium text-blue-600 hover:text-blue-500">create a new account</a>
</p>
</div>
<div class="mt-8">
<div class="mt-6">
<form action="#" method="POST" class="space-y-6">
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email address</label>
<div class="mt-1">
<input id="email" name="email" type="email" autocomplete="email" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm input-focus">
</div>
</div>
<div class="space-y-1">
<label for="password" class="block text-sm font-medium text-gray-700">Password</label>
<div class="mt-1">
<input id="password" name="password" type="password" autocomplete="current-password" required class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm input-focus">
</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<input id="remember-me" name="remember-me" type="checkbox" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded">
<label for="remember-me" class="ml-2 block text-sm text-gray-700">Remember me</label>
</div>
<div class="text-sm">
<a href="#" class="font-medium text-blue-600 hover:text-blue-500">Forgot your password?</a>
</div>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Sign in
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Right Column - Image -->
<div class="hidden lg:block relative w-0 flex-1">
<div class="absolute inset-0 auth-bg">
<img class="w-full h-full object-cover opacity-20" src="http://static.photos/education/1200x630/2" alt="Students studying">
</div>
<div class="absolute inset-0 flex items-center justify-center p-12">
<div class="text-center">
<h3 class="text-3xl font-bold text-white mb-4">Welcome Back!</h3>
<p class="text-lg text-blue-100">Continue your leadership journey with us</p>
<div class="mt-8">
<a href="signup.html" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-blue-700 bg-white hover:bg-gray-50">
Create new account
</a>
</div>
</div>
</div>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html>