ayexpress / register.html
Aniskhan29's picture
login singup sytem add koro - Follow Up Deployment
5f2ecc9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register - AYexpress</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.glass-effect {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.18);
}
.card-3d {
transition: transform 0.5s ease, box-shadow 0.5s ease;
transform: translateZ(0);
}
.card-3d:hover {
transform: translateZ(20px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
</style>
</head>
<body class="gradient-bg min-h-screen flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-md w-full space-y-8">
<div class="text-center" data-aos="fade-down">
<a href="index.html" class="inline-block">
<div class="flex items-center justify-center">
<div class="w-12 h-12 bg-indigo-600 rounded-lg flex items-center justify-center">
<i data-feather="shopping-bag" class="text-white w-8 h-8"></i>
</div>
<h1 class="ml-3 text-3xl font-bold text-indigo-600">AYexpress</h1>
</div>
</a>
<h2 class="mt-6 text-3xl font-extrabold text-gray-900">
Create your account
</h2>
<p class="mt-2 text-sm text-gray-600">
Or <a href="login.html" class="font-medium text-indigo-600 hover:text-indigo-500">sign in to existing account</a>
</p>
</div>
<form class="mt-8 space-y-6 card-3d bg-white rounded-2xl p-8 shadow-xl" data-aos="fade-up">
<div class="rounded-md shadow-sm space-y-4">
<div class="grid grid-cols-2 gap-4">
<div>
<label for="first-name" class="sr-only">First name</label>
<input id="first-name" name="first-name" type="text" autocomplete="given-name" required
class="appearance-none relative block w-full px-3 py-3 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="First name">
</div>
<div>
<label for="last-name" class="sr-only">Last name</label>
<input id="last-name" name="last-name" type="text" autocomplete="family-name" required
class="appearance-none relative block w-full px-3 py-3 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="Last name">
</div>
</div>
<div>
<label for="email-address" class="sr-only">Email address</label>
<input id="email-address" name="email" type="email" autocomplete="email" required
class="appearance-none relative block w-full px-3 py-3 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="Email address">
</div>
<div>
<label for="password" class="sr-only">Password</label>
<input id="password" name="password" type="password" autocomplete="new-password" required
class="appearance-none relative block w-full px-3 py-3 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="Password">
</div>
<div>
<label for="confirm-password" class="sr-only">Confirm Password</label>
<input id="confirm-password" name="confirm-password" type="password" autocomplete="new-password" required
class="appearance-none relative block w-full px-3 py-3 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm"
placeholder="Confirm Password">
</div>
</div>
<div class="flex items-center">
<input id="terms" name="terms" type="checkbox" required
class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 rounded">
<label for="terms" class="ml-2 block text-sm text-gray-900">
I agree to the <a href="#" class="text-indigo-600 hover:text-indigo-500">Terms</a> and <a href="#" class="text-indigo-600 hover:text-indigo-500">Privacy Policy</a>
</label>
</div>
<div>
<button type="submit"
class="group relative w-full flex justify-center py-3 px-4 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition duration-300 transform hover:scale-105">
Create Account
</button>
</div>
<div class="mt-6">
<div class="relative">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t border-gray-300"></div>
</div>
<div class="relative flex justify-center text-sm">
<span class="px-2 bg-white text-gray-500">
Or sign up with
</span>
</div>
</div>
<div class="mt-6 grid grid-cols-2 gap-3">
<button type="button"
class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<i data-feather="github" class="w-5 h-5"></i>
<span class="ml-2">GitHub</span>
</button>
<button type="button"
class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<i data-feather="google" class="w-5 h-5"></i>
<span class="ml-2">Google</span>
</button>
</div>
</div>
</form>
</div>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
</script>
<script>feather.replace();</script>
</body>
</html>