Spaces:
Running
Running
add to the sign in page, login via third party apps like google, github, or twitter - Initial Deployment
Browse files- README.md +7 -5
- index.html +56 -18
- prompts.txt +5 -0
- signin.html +98 -0
- signup.html +77 -0
- waitlist.html +68 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: build-dash
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: gray
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,57 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Modern UI with Button</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.btn-hover-effect {
|
| 15 |
+
transition: all 0.3s ease;
|
| 16 |
+
transform: translateY(0);
|
| 17 |
+
}
|
| 18 |
+
.btn-hover-effect:hover {
|
| 19 |
+
transform: translateY(-3px);
|
| 20 |
+
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
|
| 21 |
+
}
|
| 22 |
+
.btn-active-effect:active {
|
| 23 |
+
transform: translateY(1px);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="bg-gradient-to-br from-indigo-50 to-blue-100 min-h-screen flex items-center justify-center">
|
| 28 |
+
<div class="max-w-md w-full mx-auto p-8 bg-white rounded-2xl shadow-xl" data-aos="fade-up">
|
| 29 |
+
<div class="text-center mb-8">
|
| 30 |
+
<i data-feather="zap" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i>
|
| 31 |
+
<h1 class="text-3xl font-bold text-gray-800 mb-2">Welcome to Our Platform</h1>
|
| 32 |
+
<p class="text-gray-600">Discover amazing features that will transform your workflow</p>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<button
|
| 36 |
+
class="btn-hover-effect btn-active-effect w-full py-3 px-6 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-semibold rounded-lg shadow-md hover:shadow-lg transition-all duration-300 flex items-center justify-center gap-2"
|
| 37 |
+
onclick="alert('Button clicked!')"
|
| 38 |
+
>
|
| 39 |
+
<i data-feather="rocket" class="w-5 h-5"></i>
|
| 40 |
+
Get Started Now
|
| 41 |
+
</button>
|
| 42 |
+
|
| 43 |
+
<div class="mt-6 text-center text-sm text-gray-500">
|
| 44 |
+
<p>Already have an account? <a href="signin.html" class="text-blue-500 hover:underline">Sign in</a></p>
|
| 45 |
+
</div>
|
| 46 |
+
</div>
|
| 47 |
+
|
| 48 |
+
<script>
|
| 49 |
+
AOS.init({
|
| 50 |
+
duration: 800,
|
| 51 |
+
easing: 'ease-in-out',
|
| 52 |
+
once: true
|
| 53 |
+
});
|
| 54 |
+
feather.replace();
|
| 55 |
+
</script>
|
| 56 |
+
</body>
|
| 57 |
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
add a button
|
| 2 |
+
add a sign in page linked with sign in
|
| 3 |
+
add a signup page and add a link to signup in the sign in page
|
| 4 |
+
add a wait list page for those who can't signup and link into the signin and signup page
|
| 5 |
+
add to the sign in page, login via third party apps like google, github, or twitter
|
signin.html
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Sign In</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.btn-hover-effect {
|
| 15 |
+
transition: all 0.3s ease;
|
| 16 |
+
transform: translateY(0);
|
| 17 |
+
}
|
| 18 |
+
.btn-hover-effect:hover {
|
| 19 |
+
transform: translateY(-3px);
|
| 20 |
+
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
|
| 21 |
+
}
|
| 22 |
+
.btn-active-effect:active {
|
| 23 |
+
transform: translateY(1px);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="bg-gradient-to-br from-indigo-50 to-blue-100 min-h-screen flex items-center justify-center">
|
| 28 |
+
<div class="max-w-md w-full mx-auto p-8 bg-white rounded-2xl shadow-xl" data-aos="fade-up">
|
| 29 |
+
<div class="text-center mb-8">
|
| 30 |
+
<i data-feather="lock" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i>
|
| 31 |
+
<h1 class="text-3xl font-bold text-gray-800 mb-2">Sign In</h1>
|
| 32 |
+
<p class="text-gray-600">Welcome back! Please enter your details</p>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<form class="space-y-4">
|
| 36 |
+
<div>
|
| 37 |
+
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
|
| 38 |
+
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 39 |
+
</div>
|
| 40 |
+
<div>
|
| 41 |
+
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label>
|
| 42 |
+
<input type="password" id="password" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 43 |
+
</div>
|
| 44 |
+
|
| 45 |
+
<div class="flex items-center justify-between">
|
| 46 |
+
<div class="flex items-center">
|
| 47 |
+
<input id="remember-me" type="checkbox" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded">
|
| 48 |
+
<label for="remember-me" class="ml-2 block text-sm text-gray-700">Remember me</label>
|
| 49 |
+
</div>
|
| 50 |
+
<a href="#" class="text-sm text-blue-500 hover:underline">Forgot password?</a>
|
| 51 |
+
</div>
|
| 52 |
+
|
| 53 |
+
<button
|
| 54 |
+
type="submit"
|
| 55 |
+
class="btn-hover-effect btn-active-effect w-full py-3 px-6 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-semibold rounded-lg shadow-md hover:shadow-lg transition-all duration-300 flex items-center justify-center gap-2"
|
| 56 |
+
>
|
| 57 |
+
<i data-feather="log-in" class="w-5 h-5"></i>
|
| 58 |
+
Sign In
|
| 59 |
+
</button>
|
| 60 |
+
|
| 61 |
+
<div class="relative my-6">
|
| 62 |
+
<div class="absolute inset-0 flex items-center">
|
| 63 |
+
<div class="w-full border-t border-gray-300"></div>
|
| 64 |
+
</div>
|
| 65 |
+
<div class="relative flex justify-center text-sm">
|
| 66 |
+
<span class="px-2 bg-white text-gray-500">Or continue with</span>
|
| 67 |
+
</div>
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
<div class="grid grid-cols-3 gap-3">
|
| 71 |
+
<button type="button" class="btn-hover-effect btn-active-effect py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50">
|
| 72 |
+
<i data-feather="github" class="w-5 h-5"></i>
|
| 73 |
+
</button>
|
| 74 |
+
<button type="button" class="btn-hover-effect btn-active-effect py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50">
|
| 75 |
+
<i data-feather="twitter" class="w-5 h-5 text-blue-400"></i>
|
| 76 |
+
</button>
|
| 77 |
+
<button type="button" class="btn-hover-effect btn-active-effect py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50">
|
| 78 |
+
<i data-feather="google" class="w-5 h-5 text-red-500"></i>
|
| 79 |
+
</button>
|
| 80 |
+
</div>
|
| 81 |
+
|
| 82 |
+
<div class="mt-6 text-center text-sm text-gray-500">
|
| 83 |
+
<p>Don't have an account? <a href="signup.html" class="text-blue-500 hover:underline">Sign up</a></p>
|
| 84 |
+
<p class="mt-2">Signups closed? <a href="waitlist.html" class="text-blue-500 hover:underline">Join waitlist</a></p>
|
| 85 |
+
</div>
|
| 86 |
+
</form>
|
| 87 |
+
</div>
|
| 88 |
+
|
| 89 |
+
<script>
|
| 90 |
+
AOS.init({
|
| 91 |
+
duration: 800,
|
| 92 |
+
easing: 'ease-in-out',
|
| 93 |
+
once: true
|
| 94 |
+
});
|
| 95 |
+
feather.replace();
|
| 96 |
+
</script>
|
| 97 |
+
</body>
|
| 98 |
+
</html>
|
signup.html
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Sign Up</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.btn-hover-effect {
|
| 15 |
+
transition: all 0.3s ease;
|
| 16 |
+
transform: translateY(0);
|
| 17 |
+
}
|
| 18 |
+
.btn-hover-effect:hover {
|
| 19 |
+
transform: translateY(-3px);
|
| 20 |
+
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
|
| 21 |
+
}
|
| 22 |
+
.btn-active-effect:active {
|
| 23 |
+
transform: translateY(1px);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="bg-gradient-to-br from-indigo-50 to-blue-100 min-h-screen flex items-center justify-center">
|
| 28 |
+
<div class="max-w-md w-full mx-auto p-8 bg-white rounded-2xl shadow-xl" data-aos="fade-up">
|
| 29 |
+
<div class="text-center mb-8">
|
| 30 |
+
<i data-feather="user-plus" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i>
|
| 31 |
+
<h1 class="text-3xl font-bold text-gray-800 mb-2">Create Account</h1>
|
| 32 |
+
<p class="text-gray-600">Join us today to get started</p>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<form class="space-y-4">
|
| 36 |
+
<div>
|
| 37 |
+
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
|
| 38 |
+
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 39 |
+
</div>
|
| 40 |
+
<div>
|
| 41 |
+
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
|
| 42 |
+
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 43 |
+
</div>
|
| 44 |
+
<div>
|
| 45 |
+
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label>
|
| 46 |
+
<input type="password" id="password" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 47 |
+
</div>
|
| 48 |
+
<div>
|
| 49 |
+
<label for="confirm-password" class="block text-sm font-medium text-gray-700 mb-1">Confirm Password</label>
|
| 50 |
+
<input type="password" id="confirm-password" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 51 |
+
</div>
|
| 52 |
+
|
| 53 |
+
<button
|
| 54 |
+
type="submit"
|
| 55 |
+
class="btn-hover-effect btn-active-effect w-full py-3 px-6 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-semibold rounded-lg shadow-md hover:shadow-lg transition-all duration-300 flex items-center justify-center gap-2"
|
| 56 |
+
>
|
| 57 |
+
<i data-feather="user-plus" class="w-5 h-5"></i>
|
| 58 |
+
Sign Up
|
| 59 |
+
</button>
|
| 60 |
+
|
| 61 |
+
<div class="mt-6 text-center text-sm text-gray-500">
|
| 62 |
+
<p>Already have an account? <a href="signin.html" class="text-blue-500 hover:underline">Sign in</a></p>
|
| 63 |
+
<p class="mt-2">Signups closed? <a href="waitlist.html" class="text-blue-500 hover:underline">Join waitlist</a></p>
|
| 64 |
+
</div>
|
| 65 |
+
</form>
|
| 66 |
+
</div>
|
| 67 |
+
|
| 68 |
+
<script>
|
| 69 |
+
AOS.init({
|
| 70 |
+
duration: 800,
|
| 71 |
+
easing: 'ease-in-out',
|
| 72 |
+
once: true
|
| 73 |
+
});
|
| 74 |
+
feather.replace();
|
| 75 |
+
</script>
|
| 76 |
+
</body>
|
| 77 |
+
</html>
|
waitlist.html
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Join Waitlist</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.btn-hover-effect {
|
| 15 |
+
transition: all 0.3s ease;
|
| 16 |
+
transform: translateY(0);
|
| 17 |
+
}
|
| 18 |
+
.btn-hover-effect:hover {
|
| 19 |
+
transform: translateY(-3px);
|
| 20 |
+
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
|
| 21 |
+
}
|
| 22 |
+
.btn-active-effect:active {
|
| 23 |
+
transform: translateY(1px);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="bg-gradient-to-br from-indigo-50 to-blue-100 min-h-screen flex items-center justify-center">
|
| 28 |
+
<div class="max-w-md w-full mx-auto p-8 bg-white rounded-2xl shadow-xl" data-aos="fade-up">
|
| 29 |
+
<div class="text-center mb-8">
|
| 30 |
+
<i data-feather="clock" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i>
|
| 31 |
+
<h1 class="text-3xl font-bold text-gray-800 mb-2">Join Our Waitlist</h1>
|
| 32 |
+
<p class="text-gray-600">We'll notify you when signups are available</p>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<form class="space-y-4">
|
| 36 |
+
<div>
|
| 37 |
+
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
|
| 38 |
+
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 39 |
+
</div>
|
| 40 |
+
<div>
|
| 41 |
+
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
|
| 42 |
+
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
| 43 |
+
</div>
|
| 44 |
+
|
| 45 |
+
<button
|
| 46 |
+
type="submit"
|
| 47 |
+
class="btn-hover-effect btn-active-effect w-full py-3 px-6 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-semibold rounded-lg shadow-md hover:shadow-lg transition-all duration-300 flex items-center justify-center gap-2"
|
| 48 |
+
>
|
| 49 |
+
<i data-feather="send" class="w-5 h-5"></i>
|
| 50 |
+
Join Waitlist
|
| 51 |
+
</button>
|
| 52 |
+
|
| 53 |
+
<div class="mt-6 text-center text-sm text-gray-500">
|
| 54 |
+
<p>Signups available? <a href="signup.html" class="text-blue-500 hover:underline">Sign up now</a></p>
|
| 55 |
+
</div>
|
| 56 |
+
</form>
|
| 57 |
+
</div>
|
| 58 |
+
|
| 59 |
+
<script>
|
| 60 |
+
AOS.init({
|
| 61 |
+
duration: 800,
|
| 62 |
+
easing: 'ease-in-out',
|
| 63 |
+
once: true
|
| 64 |
+
});
|
| 65 |
+
feather.replace();
|
| 66 |
+
</script>
|
| 67 |
+
</body>
|
| 68 |
+
</html>
|