Monday4 commited on
Commit
5f5060b
·
verified ·
1 Parent(s): 9b68405

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +5 -3
  2. index.html +534 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Daniel Space
3
- emoji: 🐢
4
  colorFrom: blue
5
  colorTo: green
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: daniel-space
3
+ emoji: 🐳
4
  colorFrom: blue
5
  colorTo: green
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,534 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
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>CashApp - USDT Wallet</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
+ @keyframes fadeIn {
11
+ from { opacity: 0; transform: translateY(20px); }
12
+ to { opacity: 1; transform: translateY(0); }
13
+ }
14
+ .animate-fade-in {
15
+ animation: fadeIn 0.5s ease-out forwards;
16
+ }
17
+ .balance-card {
18
+ background: linear-gradient(135deg, #00d632 0%, #00b628 100%);
19
+ box-shadow: 0 10px 20px rgba(0, 182, 40, 0.2);
20
+ }
21
+ .btn-primary {
22
+ background: linear-gradient(135deg, #00d632 0%, #00b628 100%);
23
+ transition: all 0.3s ease;
24
+ }
25
+ .btn-primary:hover {
26
+ transform: translateY(-2px);
27
+ box-shadow: 0 5px 15px rgba(0, 182, 40, 0.3);
28
+ }
29
+ .btn-secondary {
30
+ background: #f8f9fa;
31
+ transition: all 0.3s ease;
32
+ }
33
+ .btn-secondary:hover {
34
+ background: #e9ecef;
35
+ }
36
+ .transaction-item {
37
+ transition: all 0.3s ease;
38
+ }
39
+ .transaction-item:hover {
40
+ background: #f8f9fa;
41
+ transform: translateX(5px);
42
+ }
43
+ .nav-item {
44
+ position: relative;
45
+ }
46
+ .nav-item.active::after {
47
+ content: '';
48
+ position: absolute;
49
+ bottom: -5px;
50
+ left: 50%;
51
+ transform: translateX(-50%);
52
+ width: 5px;
53
+ height: 5px;
54
+ border-radius: 50%;
55
+ background: #00d632;
56
+ }
57
+ .wallet-section {
58
+ display: none;
59
+ }
60
+ .security-section {
61
+ display: none;
62
+ }
63
+ .password-dots {
64
+ letter-spacing: 5px;
65
+ font-size: 1.5rem;
66
+ }
67
+ </style>
68
+ </head>
69
+ <body class="bg-gray-100 font-sans">
70
+ <div class="max-w-md mx-auto min-h-screen bg-white shadow-lg overflow-hidden">
71
+ <!-- Header -->
72
+ <header class="bg-black text-white p-4 flex justify-between items-center">
73
+ <div class="flex items-center space-x-2">
74
+ <div class="w-8 h-8 bg-green-500 rounded-full flex items-center justify-center">
75
+ <span class="font-bold">$</span>
76
+ </div>
77
+ <h1 class="font-bold text-xl">CashApp</h1>
78
+ </div>
79
+ <div class="flex items-center space-x-4">
80
+ <button class="text-gray-300 hover:text-white">
81
+ <i class="fas fa-search"></i>
82
+ </button>
83
+ <button class="text-gray-300 hover:text-white">
84
+ <i class="fas fa-cog"></i>
85
+ </button>
86
+ </div>
87
+ </header>
88
+
89
+ <!-- Main Content -->
90
+ <main class="p-4">
91
+ <!-- Home Section (Default) -->
92
+ <div id="homeSection">
93
+ <!-- Balance Card -->
94
+ <div class="balance-card rounded-2xl p-6 text-white mb-6 animate-fade-in">
95
+ <div class="flex justify-between items-start">
96
+ <div>
97
+ <p class="text-sm opacity-80">Total Balance</p>
98
+ <h2 class="text-3xl font-bold mt-1">70,000 <span class="text-lg">USDT</span></h2>
99
+ </div>
100
+ <div class="bg-white bg-opacity-20 p-2 rounded-lg">
101
+ <i class="fas fa-ellipsis-h"></i>
102
+ </div>
103
+ </div>
104
+ <div class="mt-6 flex justify-between">
105
+ <div>
106
+ <p class="text-xs opacity-80">Equivalent in USD</p>
107
+ <p class="font-medium">$70,000.00</p>
108
+ </div>
109
+ <div class="text-right">
110
+ <p class="text-xs opacity-80">Daily Yield</p>
111
+ <p class="font-medium">+$14.00</p>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- Quick Actions -->
117
+ <div class="grid grid-cols-4 gap-4 mb-6">
118
+ <button class="btn-primary flex flex-col items-center justify-center py-3 rounded-xl text-white">
119
+ <div class="w-10 h-10 bg-white bg-opacity-20 rounded-full flex items-center justify-center mb-1">
120
+ <i class="fas fa-arrow-up"></i>
121
+ </div>
122
+ <span class="text-xs">Send</span>
123
+ </button>
124
+ <button class="btn-secondary flex flex-col items-center justify-center py-3 rounded-xl">
125
+ <div class="w-10 h-10 bg-gray-200 rounded-full flex items-center justify-center mb-1">
126
+ <i class="fas fa-arrow-down text-gray-700"></i>
127
+ </div>
128
+ <span class="text-xs">Receive</span>
129
+ </button>
130
+ <button class="btn-secondary flex flex-col items-center justify-center py-3 rounded-xl">
131
+ <div class="w-10 h-10 bg-gray-200 rounded-full flex items-center justify-center mb-1">
132
+ <i class="fas fa-exchange-alt text-gray-700"></i>
133
+ </div>
134
+ <span class="text-xs">Swap</span>
135
+ </button>
136
+ <button class="btn-secondary flex flex-col items-center justify-center py-3 rounded-xl">
137
+ <div class="w-10 h-10 bg-gray-200 rounded-full flex items-center justify-center mb-1">
138
+ <i class="fas fa-qrcode text-gray-700"></i>
139
+ </div>
140
+ <span class="text-xs">Scan</span>
141
+ </button>
142
+ </div>
143
+
144
+ <!-- Recent Transactions -->
145
+ <div class="mb-4">
146
+ <div class="flex justify-between items-center mb-3">
147
+ <h3 class="font-bold text-lg">Recent Activity</h3>
148
+ <button class="text-green-500 text-sm font-medium">See All</button>
149
+ </div>
150
+
151
+ <div class="space-y-3">
152
+ <!-- Transaction 1 -->
153
+ <div class="transaction-item flex items-center p-3 rounded-lg border border-gray-100">
154
+ <div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center mr-3">
155
+ <i class="fas fa-arrow-down text-green-500"></i>
156
+ </div>
157
+ <div class="flex-1">
158
+ <p class="font-medium">USDT Deposit</p>
159
+ <p class="text-xs text-gray-500">From: Binance Wallet</p>
160
+ </div>
161
+ <div class="text-right">
162
+ <p class="font-medium text-green-500">+5,000 USDT</p>
163
+ <p class="text-xs text-gray-500">2 hours ago</p>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Transaction 2 -->
168
+ <div class="transaction-item flex items-center p-3 rounded-lg border border-gray-100">
169
+ <div class="w-10 h-10 bg-red-100 rounded-full flex items-center justify-center mr-3">
170
+ <i class="fas fa-arrow-up text-red-500"></i>
171
+ </div>
172
+ <div class="flex-1">
173
+ <p class="font-medium">Sent to John</p>
174
+ <p class="text-xs text-gray-500">Personal Payment</p>
175
+ </div>
176
+ <div class="text-right">
177
+ <p class="font-medium text-red-500">-1,200 USDT</p>
178
+ <p class="text-xs text-gray-500">Yesterday</p>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Transaction 3 -->
183
+ <div class="transaction-item flex items-center p-3 rounded-lg border border-gray-100">
184
+ <div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center mr-3">
185
+ <i class="fas fa-coins text-green-500"></i>
186
+ </div>
187
+ <div class="flex-1">
188
+ <p class="font-medium">Staking Rewards</p>
189
+ <p class="text-xs text-gray-500">Weekly Earnings</p>
190
+ </div>
191
+ <div class="text-right">
192
+ <p class="font-medium text-green-500">+350 USDT</p>
193
+ <p class="text-xs text-gray-500">3 days ago</p>
194
+ </div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Promo Banner -->
200
+ <div class="bg-gradient-to-r from-purple-500 to-indigo-600 rounded-xl p-4 text-white mb-6">
201
+ <div class="flex justify-between items-start">
202
+ <div>
203
+ <p class="text-sm font-medium mb-1">Earn 5% Cash Back</p>
204
+ <p class="text-xs opacity-90">On all purchases with CashApp Card</p>
205
+ </div>
206
+ <button class="bg-white text-purple-600 text-xs font-bold px-3 py-1 rounded-full">
207
+ Activate
208
+ </button>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Wallet Section -->
214
+ <div id="walletSection" class="wallet-section">
215
+ <div class="flex justify-between items-center mb-6">
216
+ <h2 class="text-xl font-bold">Wallet</h2>
217
+ <button onclick="showSecuritySection()" class="text-green-500 text-sm font-medium">
218
+ <i class="fas fa-lock mr-1"></i> Security
219
+ </button>
220
+ </div>
221
+
222
+ <div class="bg-gray-50 rounded-xl p-4 mb-6">
223
+ <div class="flex items-center mb-4">
224
+ <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mr-3">
225
+ <i class="fas fa-wallet text-green-500 text-xl"></i>
226
+ </div>
227
+ <div>
228
+ <p class="font-medium">USDT Wallet</p>
229
+ <p class="text-xs text-gray-500">Tether (TRC20)</p>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="grid grid-cols-2 gap-4 mb-4">
234
+ <div class="bg-white p-3 rounded-lg">
235
+ <p class="text-xs text-gray-500 mb-1">Balance</p>
236
+ <p class="font-medium">70,000 USDT</p>
237
+ </div>
238
+ <div class="bg-white p-3 rounded-lg">
239
+ <p class="text-xs text-gray-500 mb-1">Value</p>
240
+ <p class="font-medium">$70,000.00</p>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="bg-white p-3 rounded-lg mb-4">
245
+ <p class="text-xs text-gray-500 mb-1">Wallet Address</p>
246
+ <div class="flex items-center justify-between">
247
+ <p class="font-medium truncate">TNPm8w...Z9Q4</p>
248
+ <button class="text-green-500">
249
+ <i class="fas fa-copy"></i>
250
+ </button>
251
+ </div>
252
+ </div>
253
+
254
+ <button class="btn-primary w-full py-3 rounded-lg text-white font-medium">
255
+ <i class="fas fa-qrcode mr-2"></i> Show QR Code
256
+ </button>
257
+ </div>
258
+
259
+ <div class="mb-6">
260
+ <h3 class="font-bold text-lg mb-3">Connected Accounts</h3>
261
+ <div class="space-y-3">
262
+ <div class="flex items-center p-3 rounded-lg border border-gray-100">
263
+ <div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
264
+ <i class="fas fa-university text-blue-500"></i>
265
+ </div>
266
+ <div class="flex-1">
267
+ <p class="font-medium">Bank of America</p>
268
+ <p class="text-xs text-gray-500">****4532</p>
269
+ </div>
270
+ <i class="fas fa-chevron-right text-gray-400"></i>
271
+ </div>
272
+ <div class="flex items-center p-3 rounded-lg border border-gray-100">
273
+ <div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center mr-3">
274
+ <i class="fab fa-cc-visa text-purple-500"></i>
275
+ </div>
276
+ <div class="flex-1">
277
+ <p class="font-medium">Visa Card</p>
278
+ <p class="text-xs text-gray-500">****6789</p>
279
+ </div>
280
+ <i class="fas fa-chevron-right text-gray-400"></i>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <button class="btn-secondary w-full py-3 rounded-lg font-medium">
286
+ <i class="fas fa-plus mr-2"></i> Add Payment Method
287
+ </button>
288
+ </div>
289
+
290
+ <!-- Security Section -->
291
+ <div id="securitySection" class="security-section">
292
+ <div class="flex items-center mb-6">
293
+ <button onclick="showWalletSection()" class="mr-3 text-gray-500">
294
+ <i class="fas fa-arrow-left"></i>
295
+ </button>
296
+ <h2 class="text-xl font-bold">Security</h2>
297
+ </div>
298
+
299
+ <div class="mb-6">
300
+ <h3 class="font-medium mb-3">Security Settings</h3>
301
+ <div class="space-y-3">
302
+ <div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
303
+ <div class="flex items-center">
304
+ <div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center mr-3">
305
+ <i class="fas fa-fingerprint text-green-500"></i>
306
+ </div>
307
+ <div>
308
+ <p class="font-medium">Biometric Login</p>
309
+ <p class="text-xs text-gray-500">Face ID/Fingerprint</p>
310
+ </div>
311
+ </div>
312
+ <label class="relative inline-flex items-center cursor-pointer">
313
+ <input type="checkbox" class="sr-only peer" checked>
314
+ <div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-green-500"></div>
315
+ </label>
316
+ </div>
317
+ <div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
318
+ <div class="flex items-center">
319
+ <div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
320
+ <i class="fas fa-lock text-blue-500"></i>
321
+ </div>
322
+ <div>
323
+ <p class="font-medium">Change Password</p>
324
+ <p class="text-xs text-gray-500">Update your security password</p>
325
+ </div>
326
+ </div>
327
+ <i class="fas fa-chevron-right text-gray-400"></i>
328
+ </div>
329
+ <div class="flex items-center justify-between p-3 rounded-lg border border-gray-100">
330
+ <div class="flex items-center">
331
+ <div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center mr-3">
332
+ <i class="fas fa-shield-alt text-purple-500"></i>
333
+ </div>
334
+ <div>
335
+ <p class="font-medium">2FA Authentication</p>
336
+ <p class="text-xs text-gray-500">Google Authenticator</p>
337
+ </div>
338
+ </div>
339
+ <label class="relative inline-flex items-center cursor-pointer">
340
+ <input type="checkbox" class="sr-only peer">
341
+ <div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-green-500"></div>
342
+ </label>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="mb-6">
348
+ <h3 class="font-medium mb-3">Password Protection</h3>
349
+ <div class="bg-gray-50 rounded-xl p-4">
350
+ <p class="text-sm mb-4">Enter your 6-digit security password to confirm transactions</p>
351
+
352
+ <div class="flex justify-center mb-6">
353
+ <div class="password-dots text-center bg-white p-4 rounded-lg w-48">
354
+ ••••••
355
+ </div>
356
+ </div>
357
+
358
+ <div class="grid grid-cols-3 gap-3 mb-4">
359
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">1</button>
360
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">2</button>
361
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">3</button>
362
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">4</button>
363
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">5</button>
364
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">6</button>
365
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">7</button>
366
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">8</button>
367
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">9</button>
368
+ <button class="bg-transparent py-4 rounded-lg font-medium text-lg"></button>
369
+ <button class="number-btn bg-white py-4 rounded-lg font-medium text-lg">0</button>
370
+ <button class="bg-transparent py-4 rounded-lg font-medium text-lg">
371
+ <i class="fas fa-backspace text-gray-500"></i>
372
+ </button>
373
+ </div>
374
+
375
+ <button class="btn-primary w-full py-3 rounded-lg text-white font-medium">
376
+ Confirm Password
377
+ </button>
378
+ </div>
379
+ </div>
380
+
381
+ <div class="text-center text-sm text-gray-500">
382
+ <p>Last security update: 2 days ago</p>
383
+ </div>
384
+ </div>
385
+ </main>
386
+
387
+ <!-- Bottom Navigation -->
388
+ <nav class="bg-white border-t border-gray-200 flex justify-around py-3 px-4">
389
+ <a href="#" onclick="showHomeSection()" class="nav-item active flex flex-col items-center text-green-500">
390
+ <i class="fas fa-home text-lg"></i>
391
+ <span class="text-xs mt-1">Home</span>
392
+ </a>
393
+ <a href="#" onclick="showWalletSection()" class="nav-item flex flex-col items-center text-gray-500">
394
+ <i class="fas fa-wallet text-lg"></i>
395
+ <span class="text-xs mt-1">Wallet</span>
396
+ </a>
397
+ <a href="#" class="nav-item flex flex-col items-center text-gray-500">
398
+ <i class="fas fa-chart-line text-lg"></i>
399
+ <span class="text-xs mt-1">Invest</span>
400
+ </a>
401
+ <a href="#" class="nav-item flex flex-col items-center text-gray-500">
402
+ <i class="fas fa-user text-lg"></i>
403
+ <span class="text-xs mt-1">Profile</span>
404
+ </a>
405
+ </nav>
406
+
407
+ <!-- Send Money Modal (hidden by default) -->
408
+ <div id="sendModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center p-4 hidden">
409
+ <div class="bg-white rounded-2xl w-full max-w-md p-6 animate-fade-in">
410
+ <div class="flex justify-between items-center mb-4">
411
+ <h3 class="font-bold text-lg">Send USDT</h3>
412
+ <button onclick="closeModal()" class="text-gray-500">
413
+ <i class="fas fa-times"></i>
414
+ </button>
415
+ </div>
416
+
417
+ <div class="mb-4">
418
+ <label class="block text-sm font-medium text-gray-700 mb-1">Amount</label>
419
+ <div class="relative">
420
+ <span class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-500">$</span>
421
+ <input type="number" class="w-full pl-8 pr-3 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-green-500 focus:border-green-500" placeholder="0.00">
422
+ </div>
423
+ </div>
424
+
425
+ <div class="mb-6">
426
+ <label class="block text-sm font-medium text-gray-700 mb-1">To</label>
427
+ <div class="flex items-center border border-gray-300 rounded-lg px-3 py-2">
428
+ <i class="fas fa-user text-gray-500 mr-2"></i>
429
+ <input type="text" class="flex-1 outline-none" placeholder="Name, $Cashtag, or phone">
430
+ <button class="text-green-500">
431
+ <i class="fas fa-qrcode"></i>
432
+ </button>
433
+ </div>
434
+ </div>
435
+
436
+ <button class="btn-primary w-full py-3 rounded-lg text-white font-medium">
437
+ Send 70,000 USDT
438
+ </button>
439
+ </div>
440
+ </div>
441
+ </div>
442
+
443
+ <script>
444
+ // Section navigation functions
445
+ function showHomeSection() {
446
+ document.getElementById('homeSection').style.display = 'block';
447
+ document.getElementById('walletSection').style.display = 'none';
448
+ document.getElementById('securitySection').style.display = 'none';
449
+ updateNav('home');
450
+ }
451
+
452
+ function showWalletSection() {
453
+ document.getElementById('homeSection').style.display = 'none';
454
+ document.getElementById('walletSection').style.display = 'block';
455
+ document.getElementById('securitySection').style.display = 'none';
456
+ updateNav('wallet');
457
+ }
458
+
459
+ function showSecuritySection() {
460
+ document.getElementById('homeSection').style.display = 'none';
461
+ document.getElementById('walletSection').style.display = 'none';
462
+ document.getElementById('securitySection').style.display = 'block';
463
+ updateNav('none');
464
+ }
465
+
466
+ function updateNav(activeItem) {
467
+ const navItems = document.querySelectorAll('.nav-item');
468
+ navItems.forEach(item => {
469
+ item.classList.remove('active', 'text-green-500');
470
+ item.classList.add('text-gray-500');
471
+ });
472
+
473
+ if (activeItem === 'home') {
474
+ navItems[0].classList.add('active', 'text-green-500');
475
+ } else if (activeItem === 'wallet') {
476
+ navItems[1].classList.add('active', 'text-green-500');
477
+ }
478
+ }
479
+
480
+ // Password input functionality
481
+ let password = '';
482
+ const passwordDots = document.querySelector('.password-dots');
483
+ const numberButtons = document.querySelectorAll('.number-btn');
484
+
485
+ numberButtons.forEach(button => {
486
+ button.addEventListener('click', () => {
487
+ if (password.length < 6) {
488
+ password += button.textContent;
489
+ updatePasswordDots();
490
+ }
491
+ });
492
+ });
493
+
494
+ document.querySelector('.fa-backspace').parentElement.addEventListener('click', () => {
495
+ if (password.length > 0) {
496
+ password = password.slice(0, -1);
497
+ updatePasswordDots();
498
+ }
499
+ });
500
+
501
+ function updatePasswordDots() {
502
+ const dots = '•'.repeat(password.length);
503
+ const empty = ' '.repeat(6 - password.length);
504
+ passwordDots.textContent = dots + empty;
505
+ }
506
+
507
+ // Simple modal toggle function
508
+ function openModal() {
509
+ document.getElementById('sendModal').classList.remove('hidden');
510
+ }
511
+
512
+ function closeModal() {
513
+ document.getElementById('sendModal').classList.add('hidden');
514
+ }
515
+
516
+ // Add click event to the Send button
517
+ document.querySelector('.btn-primary').addEventListener('click', openModal);
518
+
519
+ // Simulate loading animation
520
+ document.addEventListener('DOMContentLoaded', () => {
521
+ setTimeout(() => {
522
+ const elements = document.querySelectorAll('.animate-fade-in');
523
+ elements.forEach(el => {
524
+ el.style.opacity = '1';
525
+ el.style.transform = 'translateY(0)';
526
+ });
527
+ }, 100);
528
+
529
+ // Initialize with home section
530
+ showHomeSection();
531
+ });
532
+ </script>
533
+ <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=Monday4/daniel-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
534
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Create a fake cashapp application with a minimum amount of 70000 usdt
2
+ Create wallet section and security password