Spaces:
Running
Running
Add 3 files
Browse files- README.md +6 -4
- index.html +195 -19
- prompts.txt +1 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: red
|
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: singup
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: purple
|
5 |
colorTo: red
|
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,195 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Signup</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
9 |
+
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
|
10 |
+
<style>
|
11 |
+
@keyframes float {
|
12 |
+
0%, 100% {
|
13 |
+
transform: translateY(0);
|
14 |
+
}
|
15 |
+
50% {
|
16 |
+
transform: translateY(-20px);
|
17 |
+
}
|
18 |
+
}
|
19 |
+
|
20 |
+
.floating {
|
21 |
+
animation: float 6s ease-in-out infinite;
|
22 |
+
}
|
23 |
+
|
24 |
+
.gradient-text {
|
25 |
+
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
|
26 |
+
-webkit-background-clip: text;
|
27 |
+
background-clip: text;
|
28 |
+
color: transparent;
|
29 |
+
}
|
30 |
+
|
31 |
+
.gradient-bg {
|
32 |
+
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
33 |
+
}
|
34 |
+
|
35 |
+
.pattern-overlay {
|
36 |
+
background-image: radial-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
|
37 |
+
background-size: 20px 20px;
|
38 |
+
}
|
39 |
+
|
40 |
+
.input-effect {
|
41 |
+
transition: all 0.3s ease;
|
42 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
43 |
+
}
|
44 |
+
|
45 |
+
.input-effect:focus {
|
46 |
+
transform: translateY(-2px);
|
47 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
48 |
+
}
|
49 |
+
|
50 |
+
.btn-hover {
|
51 |
+
transition: all 0.3s ease;
|
52 |
+
background-size: 200% auto;
|
53 |
+
}
|
54 |
+
|
55 |
+
.btn-hover:hover {
|
56 |
+
background-position: right center;
|
57 |
+
transform: translateY(-2px);
|
58 |
+
}
|
59 |
+
|
60 |
+
body {
|
61 |
+
font-family: 'Poppins', sans-serif;
|
62 |
+
}
|
63 |
+
</style>
|
64 |
+
</head>
|
65 |
+
<body class="gradient-bg min-h-screen flex items-center justify-center p-4">
|
66 |
+
<div class="absolute top-0 left-0 w-full h-full pattern-overlay"></div>
|
67 |
+
|
68 |
+
<div class="relative z-10 w-full max-w-md">
|
69 |
+
<div class="bg-white rounded-3xl shadow-2xl overflow-hidden transform transition-all duration-500 hover:scale-105">
|
70 |
+
<!-- Decorative elements -->
|
71 |
+
<div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-blue-200 opacity-30"></div>
|
72 |
+
<div class="absolute -bottom-10 -right-10 w-24 h-24 rounded-full bg-purple-200 opacity-30"></div>
|
73 |
+
<div class="absolute top-1/4 -right-8 w-16 h-16 rounded-full bg-pink-200 opacity-30 floating"></div>
|
74 |
+
|
75 |
+
<div class="p-8">
|
76 |
+
<div class="text-center mb-8">
|
77 |
+
<h1 class="text-4xl font-bold gradient-text mb-2">Sign Up</h1>
|
78 |
+
<p class="text-gray-600">Join our community today</p>
|
79 |
+
</div>
|
80 |
+
|
81 |
+
<form class="space-y-6">
|
82 |
+
<div class="relative">
|
83 |
+
<input type="text" id="name" class="input-effect w-full px-4 py-3 rounded-lg border border-gray-200 focus:outline-none focus:border-blue-500 transition-all duration-300" placeholder="Full Name" required>
|
84 |
+
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
85 |
+
<i class="fas fa-user text-gray-400"></i>
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
|
89 |
+
<div class="relative">
|
90 |
+
<input type="email" id="email" class="input-effect w-full px-4 py-3 rounded-lg border border-gray-200 focus:outline-none focus:border-blue-500 transition-all duration-300" placeholder="Email Address" required>
|
91 |
+
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
92 |
+
<i class="fas fa-envelope text-gray-400"></i>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
|
96 |
+
<div class="relative">
|
97 |
+
<input type="password" id="password" class="input-effect w-full px-4 py-3 rounded-lg border border-gray-200 focus:outline-none focus:border-blue-500 transition-all duration-300" placeholder="Password" required>
|
98 |
+
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
99 |
+
<i class="fas fa-lock text-gray-400"></i>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
|
103 |
+
<div class="relative">
|
104 |
+
<input type="password" id="confirm-password" class="input-effect w-full px-4 py-3 rounded-lg border border-gray-200 focus:outline-none focus:border-blue-500 transition-all duration-300" placeholder="Confirm Password" required>
|
105 |
+
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
106 |
+
<i class="fas fa-lock text-gray-400"></i>
|
107 |
+
</div>
|
108 |
+
</div>
|
109 |
+
|
110 |
+
<div class="flex items-center">
|
111 |
+
<input id="terms" type="checkbox" class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500" required>
|
112 |
+
<label for="terms" class="ml-2 text-sm text-gray-600">I agree to the <a href="#" class="text-blue-600 hover:underline">Terms and Conditions</a></label>
|
113 |
+
</div>
|
114 |
+
|
115 |
+
<button type="submit" class="btn-hover w-full py-3 px-4 bg-gradient-to-r from-blue-500 to-purple-600 text-white font-medium rounded-lg hover:shadow-lg transition-all duration-300">
|
116 |
+
Create Account
|
117 |
+
</button>
|
118 |
+
</form>
|
119 |
+
|
120 |
+
<div class="mt-6 text-center">
|
121 |
+
<p class="text-gray-600">Already have an account? <a href="#" class="text-blue-600 font-medium hover:underline">Log In</a></p>
|
122 |
+
</div>
|
123 |
+
|
124 |
+
<div class="mt-6">
|
125 |
+
<div class="relative">
|
126 |
+
<div class="absolute inset-0 flex items-center">
|
127 |
+
<div class="w-full border-t border-gray-300"></div>
|
128 |
+
</div>
|
129 |
+
<div class="relative flex justify-center text-sm">
|
130 |
+
<span class="px-2 bg-white text-gray-500">Or sign up with</span>
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
|
134 |
+
<div class="mt-6 grid grid-cols-3 gap-3">
|
135 |
+
<a href="#" class="btn-hover w-full py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50 transition-all duration-300">
|
136 |
+
<i class="fab fa-google text-red-500 mr-2"></i>
|
137 |
+
</a>
|
138 |
+
<a href="#" class="btn-hover w-full py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50 transition-all duration-300">
|
139 |
+
<i class="fab fa-facebook-f text-blue-600 mr-2"></i>
|
140 |
+
</a>
|
141 |
+
<a href="#" class="btn-hover w-full py-2 px-4 border border-gray-300 rounded-lg flex items-center justify-center hover:bg-gray-50 transition-all duration-300">
|
142 |
+
<i class="fab fa-twitter text-blue-400 mr-2"></i>
|
143 |
+
</a>
|
144 |
+
</div>
|
145 |
+
</div>
|
146 |
+
</div>
|
147 |
+
|
148 |
+
<div class="bg-gray-50 px-8 py-4 rounded-b-3xl">
|
149 |
+
<p class="text-center text-gray-500 text-sm">
|
150 |
+
By signing up, you agree to our <a href="#" class="text-blue-600 hover:underline">Privacy Policy</a> and <a href="#" class="text-blue-600 hover:underline">Cookie Policy</a>.
|
151 |
+
</p>
|
152 |
+
</div>
|
153 |
+
</div>
|
154 |
+
</div>
|
155 |
+
|
156 |
+
<script>
|
157 |
+
// Add some interactive effects
|
158 |
+
document.querySelectorAll('.input-effect').forEach(input => {
|
159 |
+
input.addEventListener('focus', function() {
|
160 |
+
this.parentElement.querySelector('i').classList.remove('text-gray-400');
|
161 |
+
this.parentElement.querySelector('i').classList.add('text-blue-500');
|
162 |
+
});
|
163 |
+
|
164 |
+
input.addEventListener('blur', function() {
|
165 |
+
this.parentElement.querySelector('i').classList.remove('text-blue-500');
|
166 |
+
this.parentElement.querySelector('i').classList.add('text-gray-400');
|
167 |
+
});
|
168 |
+
});
|
169 |
+
|
170 |
+
// Form submission animation
|
171 |
+
const form = document.querySelector('form');
|
172 |
+
form.addEventListener('submit', function(e) {
|
173 |
+
e.preventDefault();
|
174 |
+
|
175 |
+
const button = this.querySelector('button[type="submit"]');
|
176 |
+
button.innerHTML = 'Creating Account...';
|
177 |
+
button.classList.add('opacity-75');
|
178 |
+
|
179 |
+
// Simulate API call
|
180 |
+
setTimeout(() => {
|
181 |
+
button.innerHTML = 'Account Created!';
|
182 |
+
button.classList.remove('bg-gradient-to-r', 'from-blue-500', 'to-purple-600');
|
183 |
+
button.classList.add('bg-green-500');
|
184 |
+
|
185 |
+
// Reset after 2 seconds
|
186 |
+
setTimeout(() => {
|
187 |
+
button.innerHTML = 'Create Account';
|
188 |
+
button.classList.remove('bg-green-500', 'opacity-75');
|
189 |
+
button.classList.add('bg-gradient-to-r', 'from-blue-500', 'to-purple-600');
|
190 |
+
}, 2000);
|
191 |
+
}, 1500);
|
192 |
+
});
|
193 |
+
</script>
|
194 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=djsonic656565/singup" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
195 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
همهی رنگ ها الگوها فونت ها انیمیشن ها افکت ها مثل صفحه اول باشه اسم این صفحه هم بزار sungup
|