deedrop1140's picture
Upload 6 files
540eb9d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-emerald-500 to-teal-600 flex items-center justify-center">
<div class="bg-white w-full max-w-md rounded-2xl shadow-xl p-8">
<h2 class="text-3xl font-bold text-center text-gray-800">Create Account</h2>
<p class="text-center text-gray-500 mt-2">We’ll verify your email</p>
<form method="POST" class="mt-6 space-y-4">
<input type="email" name="email" placeholder="Email"
required
class="w-full px-4 py-3 rounded-lg border focus:ring-2 focus:ring-emerald-500 outline-none">
<input type="password" name="password" placeholder="Password"
required
class="w-full px-4 py-3 rounded-lg border focus:ring-2 focus:ring-emerald-500 outline-none">
<button
class="w-full bg-emerald-600 hover:bg-emerald-700 text-white py-3 rounded-lg font-semibold transition">
Register
</button>
</form>
<p class="text-center text-sm text-gray-600 mt-4">
Already have an account?
<a href="/auth/login" class="text-emerald-600 hover:underline">Login</a>
</p>
</div>
</body>
</html>