Spaces:
Running
Running
Add 3 files
Browse files- README.md +6 -4
- index.html +197 -19
- prompts.txt +1 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: pink
|
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: darkvault
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: green
|
5 |
colorTo: pink
|
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,197 @@
|
|
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>Snapchat Login Clone</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
+
<style>
|
10 |
+
.snap-yellow {
|
11 |
+
background-color: #FFFC00;
|
12 |
+
}
|
13 |
+
.snap-yellow-text {
|
14 |
+
color: #FFFC00;
|
15 |
+
}
|
16 |
+
.snap-yellow-border {
|
17 |
+
border-color: #FFFC00;
|
18 |
+
}
|
19 |
+
.snap-yellow-hover:hover {
|
20 |
+
background-color: #FFFC00;
|
21 |
+
}
|
22 |
+
.input-focus:focus {
|
23 |
+
border-color: #FFFC00;
|
24 |
+
box-shadow: 0 0 0 2px rgba(255, 252, 0, 0.2);
|
25 |
+
}
|
26 |
+
.wave {
|
27 |
+
animation: wave 2s infinite;
|
28 |
+
}
|
29 |
+
@keyframes wave {
|
30 |
+
0%, 100% {
|
31 |
+
transform: rotate(0deg);
|
32 |
+
}
|
33 |
+
25% {
|
34 |
+
transform: rotate(5deg);
|
35 |
+
}
|
36 |
+
75% {
|
37 |
+
transform: rotate(-5deg);
|
38 |
+
}
|
39 |
+
}
|
40 |
+
</style>
|
41 |
+
</head>
|
42 |
+
<body class="bg-black text-white min-h-screen flex flex-col">
|
43 |
+
<!-- Header -->
|
44 |
+
<header class="py-4 px-6 flex justify-between items-center">
|
45 |
+
<div class="text-2xl font-bold snap-yellow-text">snapchat</div>
|
46 |
+
<div class="flex space-x-4">
|
47 |
+
<button class="text-white hover:text-gray-300 transition">
|
48 |
+
<i class="fas fa-globe"></i>
|
49 |
+
</button>
|
50 |
+
<button class="text-white hover:text-gray-300 transition">
|
51 |
+
<i class="fas fa-question-circle"></i>
|
52 |
+
</button>
|
53 |
+
</div>
|
54 |
+
</header>
|
55 |
+
|
56 |
+
<!-- Main Content -->
|
57 |
+
<main class="flex-grow flex flex-col items-center justify-center px-6">
|
58 |
+
<div class="max-w-md w-full">
|
59 |
+
<div class="text-center mb-8">
|
60 |
+
<div class="wave inline-block mb-4">
|
61 |
+
<i class="fas fa-ghost text-5xl snap-yellow-text"></i>
|
62 |
+
</div>
|
63 |
+
<h1 class="text-3xl font-bold mb-2">Welcome back!</h1>
|
64 |
+
<p class="text-gray-400">Log in with your Snapchat account</p>
|
65 |
+
</div>
|
66 |
+
|
67 |
+
<form id="loginForm" class="space-y-4">
|
68 |
+
<div>
|
69 |
+
<input
|
70 |
+
type="text"
|
71 |
+
id="username"
|
72 |
+
placeholder="Username or Email"
|
73 |
+
class="w-full px-4 py-3 bg-gray-900 rounded-lg border border-gray-700 focus:outline-none input-focus transition"
|
74 |
+
required
|
75 |
+
>
|
76 |
+
</div>
|
77 |
+
<div class="relative">
|
78 |
+
<input
|
79 |
+
type="password"
|
80 |
+
id="password"
|
81 |
+
placeholder="Password"
|
82 |
+
class="w-full px-4 py-3 bg-gray-900 rounded-lg border border-gray-700 focus:outline-none input-focus transition pr-10"
|
83 |
+
required
|
84 |
+
>
|
85 |
+
<button type="button" id="togglePassword" class="absolute right-3 top-3 text-gray-400 hover:text-white">
|
86 |
+
<i class="fas fa-eye"></i>
|
87 |
+
</button>
|
88 |
+
</div>
|
89 |
+
<div class="flex justify-between items-center">
|
90 |
+
<div class="flex items-center">
|
91 |
+
<input type="checkbox" id="remember" class="mr-2">
|
92 |
+
<label for="remember" class="text-sm text-gray-400">Remember me</label>
|
93 |
+
</div>
|
94 |
+
<a href="#" class="text-sm text-blue-400 hover:underline">Forgot password?</a>
|
95 |
+
</div>
|
96 |
+
<button
|
97 |
+
type="submit"
|
98 |
+
class="w-full py-3 rounded-lg font-bold snap-yellow text-black hover:bg-yellow-300 transition flex items-center justify-center"
|
99 |
+
>
|
100 |
+
Log In
|
101 |
+
<i class="fas fa-arrow-right ml-2"></i>
|
102 |
+
</button>
|
103 |
+
</form>
|
104 |
+
|
105 |
+
<div class="text-center mt-6">
|
106 |
+
<p class="text-gray-400">Don't have an account? <a href="#" class="text-blue-400 hover:underline">Sign Up</a></p>
|
107 |
+
</div>
|
108 |
+
|
109 |
+
<div class="flex items-center my-6">
|
110 |
+
<div class="flex-grow border-t border-gray-700"></div>
|
111 |
+
<span class="px-4 text-gray-400 text-sm">OR</span>
|
112 |
+
<div class="flex-grow border-t border-gray-700"></div>
|
113 |
+
</div>
|
114 |
+
|
115 |
+
<div class="space-y-3">
|
116 |
+
<button class="w-full py-3 rounded-lg font-bold bg-gray-900 hover:bg-gray-800 transition flex items-center justify-center">
|
117 |
+
<i class="fab fa-google text-red-500 mr-2"></i>
|
118 |
+
Continue with Google
|
119 |
+
</button>
|
120 |
+
<button class="w-full py-3 rounded-lg font-bold bg-gray-900 hover:bg-gray-800 transition flex items-center justify-center">
|
121 |
+
<i class="fab fa-apple text-gray-300 mr-2"></i>
|
122 |
+
Continue with Apple
|
123 |
+
</button>
|
124 |
+
</div>
|
125 |
+
</div>
|
126 |
+
</main>
|
127 |
+
|
128 |
+
<!-- Footer -->
|
129 |
+
<footer class="py-6 px-6 text-center text-gray-500 text-sm">
|
130 |
+
<div class="flex justify-center space-x-4 mb-4">
|
131 |
+
<a href="#" class="hover:text-gray-300">Privacy Policy</a>
|
132 |
+
<a href="#" class="hover:text-gray-300">Terms of Service</a>
|
133 |
+
<a href="#" class="hover:text-gray-300">Support</a>
|
134 |
+
</div>
|
135 |
+
<p>© 2023 Snap Inc.</p>
|
136 |
+
</footer>
|
137 |
+
|
138 |
+
<script>
|
139 |
+
document.addEventListener('DOMContentLoaded', function() {
|
140 |
+
// Toggle password visibility
|
141 |
+
const togglePassword = document.getElementById('togglePassword');
|
142 |
+
const passwordInput = document.getElementById('password');
|
143 |
+
|
144 |
+
togglePassword.addEventListener('click', function() {
|
145 |
+
const type = passwordInput.getAttribute('type') === 'password' ? 'text' : 'password';
|
146 |
+
passwordInput.setAttribute('type', type);
|
147 |
+
this.innerHTML = type === 'password' ? '<i class="fas fa-eye"></i>' : '<i class="fas fa-eye-slash"></i>';
|
148 |
+
});
|
149 |
+
|
150 |
+
// Form submission
|
151 |
+
const loginForm = document.getElementById('loginForm');
|
152 |
+
|
153 |
+
loginForm.addEventListener('submit', function(e) {
|
154 |
+
e.preventDefault();
|
155 |
+
|
156 |
+
const username = document.getElementById('username').value;
|
157 |
+
const password = document.getElementById('password').value;
|
158 |
+
|
159 |
+
// Simple validation
|
160 |
+
if(username.trim() === '' || password.trim() === '') {
|
161 |
+
alert('Please fill in all fields');
|
162 |
+
return;
|
163 |
+
}
|
164 |
+
|
165 |
+
// Here you would typically send the data to a server
|
166 |
+
console.log('Login attempt with:', { username, password });
|
167 |
+
|
168 |
+
// Show loading state
|
169 |
+
const submitBtn = loginForm.querySelector('button[type="submit"]');
|
170 |
+
submitBtn.innerHTML = '<i class="fas fa-spinner fa-spin"></i> Logging in...';
|
171 |
+
submitBtn.disabled = true;
|
172 |
+
|
173 |
+
// Simulate API call
|
174 |
+
setTimeout(() => {
|
175 |
+
submitBtn.innerHTML = 'Log In <i class="fas fa-arrow-right ml-2"></i>';
|
176 |
+
submitBtn.disabled = false;
|
177 |
+
|
178 |
+
// For demo purposes, show success
|
179 |
+
alert('Login successful! (This is a demo)');
|
180 |
+
}, 1500);
|
181 |
+
});
|
182 |
+
|
183 |
+
// Add some fun hover effects
|
184 |
+
const ghostIcon = document.querySelector('.fa-ghost');
|
185 |
+
ghostIcon.addEventListener('mouseover', () => {
|
186 |
+
ghostIcon.classList.add('wave');
|
187 |
+
});
|
188 |
+
|
189 |
+
ghostIcon.addEventListener('mouseout', () => {
|
190 |
+
setTimeout(() => {
|
191 |
+
ghostIcon.classList.remove('wave');
|
192 |
+
}, 2000);
|
193 |
+
});
|
194 |
+
});
|
195 |
+
</script>
|
196 |
+
<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=tattedbootyab/darkvault" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
197 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
i need a clone of snapchats login page
|