Canalee07 commited on
Commit
e91c249
·
verified ·
1 Parent(s): 4926a7d

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +383 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Canalee
3
- emoji: 🏃
4
- colorFrom: gray
5
- colorTo: purple
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: canalee
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: yellow
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,383 @@
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>Chase Private Client Banking</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
+ @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Open Sans', sans-serif;
14
+ background-color: #f8fafc;
15
+ }
16
+
17
+ .chase-blue {
18
+ background-color: #117ACA;
19
+ }
20
+
21
+ .chase-blue-text {
22
+ color: #117ACA;
23
+ }
24
+
25
+ .balance-glow {
26
+ text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
27
+ }
28
+
29
+ .card-hover:hover {
30
+ transform: translateY(-5px);
31
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
32
+ }
33
+
34
+ .transition-all {
35
+ transition: all 0.3s ease;
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="min-h-screen bg-gray-50">
40
+ <!-- Login Page -->
41
+ <div id="login-page" class="flex flex-col min-h-screen">
42
+ <!-- Header -->
43
+ <header class="chase-blue text-white py-4 px-6 shadow-md">
44
+ <div class="container mx-auto flex justify-between items-center">
45
+ <div class="flex items-center space-x-2">
46
+ <i class="fas fa-university text-2xl"></i>
47
+ <h1 class="text-2xl font-bold">Chase</h1>
48
+ </div>
49
+ <div class="hidden md:flex space-x-4">
50
+ <a href="#" class="text-white hover:underline">Personal</a>
51
+ <a href="#" class="text-white hover:underline">Business</a>
52
+ <a href="#" class="text-white hover:underline">Commercial</a>
53
+ <a href="#" class="text-white hover:underline">About Chase</a>
54
+ </div>
55
+ </div>
56
+ </header>
57
+
58
+ <!-- Main Content -->
59
+ <main class="flex-grow flex items-center justify-center p-6">
60
+ <div class="w-full max-w-md bg-white rounded-xl shadow-lg overflow-hidden transition-all transform hover:shadow-xl">
61
+ <div class="chase-blue py-4 px-6">
62
+ <h2 class="text-xl font-bold text-white">Sign in to your account</h2>
63
+ </div>
64
+
65
+ <div class="p-6">
66
+ <form id="login-form" class="space-y-4">
67
+ <div>
68
+ <label for="username" class="block text-sm font-medium text-gray-700">Username</label>
69
+ <input type="text" id="username" name="username" required
70
+ class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-chase-blue focus:border-chase-blue">
71
+ </div>
72
+
73
+ <div>
74
+ <label for="password" class="block text-sm font-medium text-gray-700">Password</label>
75
+ <input type="password" id="password" name="password" required
76
+ class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-chase-blue focus:border-chase-blue">
77
+ </div>
78
+
79
+ <div class="flex items-center">
80
+ <input id="remember-me" name="remember-me" type="checkbox"
81
+ class="h-4 w-4 text-chase-blue focus:ring-chase-blue border-gray-300 rounded">
82
+ <label for="remember-me" class="ml-2 block text-sm text-gray-700">Remember me</label>
83
+ </div>
84
+
85
+ <div>
86
+ <button type="submit"
87
+ class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white chase-blue hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all">
88
+ Sign in
89
+ </button>
90
+ </div>
91
+ </form>
92
+
93
+ <div class="mt-4 text-center">
94
+ <a href="#" class="text-sm text-chase-blue hover:underline">Forgot username or password?</a>
95
+ </div>
96
+
97
+ <div class="mt-6">
98
+ <div class="relative">
99
+ <div class="absolute inset-0 flex items-center">
100
+ <div class="w-full border-t border-gray-300"></div>
101
+ </div>
102
+ <div class="relative flex justify-center text-sm">
103
+ <span class="px-2 bg-white text-gray-500">New to Chase?</span>
104
+ </div>
105
+ </div>
106
+
107
+ <div class="mt-4">
108
+ <a href="#" class="w-full flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all">
109
+ Open an account
110
+ </a>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </main>
116
+
117
+ <!-- Footer -->
118
+ <footer class="bg-gray-100 py-6 px-6 border-t border-gray-200">
119
+ <div class="container mx-auto">
120
+ <div class="flex flex-col md:flex-row justify-between items-center">
121
+ <div class="flex space-x-4 mb-4 md:mb-0">
122
+ <a href="#" class="text-sm text-gray-600 hover:underline">Privacy</a>
123
+ <a href="#" class="text-sm text-gray-600 hover:underline">Security</a>
124
+ <a href="#" class="text-sm text-gray-600 hover:underline">Terms of Use</a>
125
+ <a href="#" class="text-sm text-gray-600 hover:underline">Accessibility</a>
126
+ </div>
127
+ <div class="text-sm text-gray-500">
128
+ © 2023 JPMorgan Chase & Co.
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </footer>
133
+ </div>
134
+
135
+ <!-- Dashboard Page (Hidden Initially) -->
136
+ <div id="dashboard-page" class="hidden min-h-screen flex flex-col">
137
+ <!-- Header -->
138
+ <header class="chase-blue text-white py-4 px-6 shadow-md">
139
+ <div class="container mx-auto flex justify-between items-center">
140
+ <div class="flex items-center space-x-2">
141
+ <i class="fas fa-university text-2xl"></i>
142
+ <h1 class="text-2xl font-bold">Chase Private Client</h1>
143
+ </div>
144
+ <div class="flex items-center space-x-4">
145
+ <div class="hidden md:flex items-center space-x-2">
146
+ <i class="fas fa-bell"></i>
147
+ <i class="fas fa-envelope"></i>
148
+ <i class="fas fa-question-circle"></i>
149
+ </div>
150
+ <div class="flex items-center space-x-2">
151
+ <i class="fas fa-user-circle text-2xl"></i>
152
+ <span id="welcome-user" class="font-medium">Welcome, Client</span>
153
+ <button id="logout-btn" class="ml-2 px-3 py-1 bg-white text-chase-blue rounded-md text-sm font-medium hover:bg-gray-100 transition-all">
154
+ Sign Out
155
+ </button>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </header>
160
+
161
+ <!-- Main Content -->
162
+ <main class="flex-grow p-6">
163
+ <div class="container mx-auto">
164
+ <!-- Account Overview -->
165
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 transition-all card-hover">
166
+ <div class="chase-blue py-4 px-6">
167
+ <h2 class="text-xl font-bold text-white">Account Overview</h2>
168
+ </div>
169
+
170
+ <div class="p-6">
171
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
172
+ <div>
173
+ <h3 class="text-lg font-semibold text-gray-800">Private Client Checking</h3>
174
+ <p class="text-gray-600">Account ending in 6969</p>
175
+ </div>
176
+ <div class="mt-4 md:mt-0">
177
+ <span class="text-sm font-medium text-gray-500">Available Balance</span>
178
+ <div class="text-3xl font-bold chase-blue-text balance-glow" id="account-balance">$500,000,000.00</div>
179
+ </div>
180
+ </div>
181
+
182
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
183
+ <button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all">
184
+ <i class="fas fa-exchange-alt text-chase-blue"></i>
185
+ <span>Transfer</span>
186
+ </button>
187
+ <button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all">
188
+ <i class="fas fa-money-bill-wave text-chase-blue"></i>
189
+ <span>Pay Bills</span>
190
+ </button>
191
+ <button class="flex items-center justify-center space-x-2 py-3 px-4 bg-gray-100 rounded-lg hover:bg-gray-200 transition-all">
192
+ <i class="fas fa-piggy-bank text-chase-blue"></i>
193
+ <span>Deposit</span>
194
+ </button>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Recent Transactions -->
200
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 transition-all card-hover">
201
+ <div class="chase-blue py-4 px-6">
202
+ <h2 class="text-xl font-bold text-white">Recent Transactions</h2>
203
+ </div>
204
+
205
+ <div class="p-6">
206
+ <div class="overflow-x-auto">
207
+ <table class="min-w-full divide-y divide-gray-200">
208
+ <thead class="bg-gray-50">
209
+ <tr>
210
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
211
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Description</th>
212
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th>
213
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Balance</th>
214
+ </tr>
215
+ </thead>
216
+ <tbody class="bg-white divide-y divide-gray-200">
217
+ <tr>
218
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Today</td>
219
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Private Client Bonus</td>
220
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-green-600">+$100,000,000.00</td>
221
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$500,000,000.00</td>
222
+ </tr>
223
+ <tr>
224
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Yesterday</td>
225
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Luxury Yacht Purchase</td>
226
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-red-600">-$75,000,000.00</td>
227
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$400,000,000.00</td>
228
+ </tr>
229
+ <tr>
230
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2 days ago</td>
231
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Private Island Investment</td>
232
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-red-600">-$125,000,000.00</td>
233
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$475,000,000.00</td>
234
+ </tr>
235
+ <tr>
236
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3 days ago</td>
237
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Stock Market Gains</td>
238
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-green-600">+$200,000,000.00</td>
239
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$600,000,000.00</td>
240
+ </tr>
241
+ </tbody>
242
+ </table>
243
+ </div>
244
+
245
+ <div class="mt-4 text-center">
246
+ <a href="#" class="text-sm text-chase-blue hover:underline">View all transactions</a>
247
+ </div>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Quick Access -->
252
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
253
+ <!-- Investments -->
254
+ <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all card-hover">
255
+ <div class="chase-blue py-4 px-6">
256
+ <h2 class="text-xl font-bold text-white">Investments</h2>
257
+ </div>
258
+
259
+ <div class="p-6">
260
+ <div class="flex justify-between items-center mb-4">
261
+ <h3 class="text-lg font-semibold text-gray-800">Portfolio Value</h3>
262
+ <span class="text-xl font-bold text-chase-blue">$12,450,000.00</span>
263
+ </div>
264
+
265
+ <div class="space-y-3">
266
+ <div class="flex justify-between items-center">
267
+ <span class="text-gray-600">Stocks</span>
268
+ <span class="font-medium">$8,200,000.00</span>
269
+ </div>
270
+ <div class="flex justify-between items-center">
271
+ <span class="text-gray-600">Bonds</span>
272
+ <span class="font-medium">$2,750,000.00</span>
273
+ </div>
274
+ <div class="flex justify-between items-center">
275
+ <span class="text-gray-600">Mutual Funds</span>
276
+ <span class="font-medium">$1,500,000.00</span>
277
+ </div>
278
+ </div>
279
+
280
+ <button class="mt-4 w-full py-2 px-4 bg-chase-blue text-white rounded-md hover:bg-blue-700 transition-all">
281
+ Manage Investments
282
+ </button>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- Credit Cards -->
287
+ <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all card-hover">
288
+ <div class="chase-blue py-4 px-6">
289
+ <h2 class="text-xl font-bold text-white">Credit Cards</h2>
290
+ </div>
291
+
292
+ <div class="p-6">
293
+ <div class="flex justify-between items-center mb-4">
294
+ <h3 class="text-lg font-semibold text-gray-800">Chase Sapphire Reserve</h3>
295
+ <span class="text-xl font-bold text-chase-blue">$250,000 Limit</span>
296
+ </div>
297
+
298
+ <div class="space-y-3">
299
+ <div class="flex justify-between items-center">
300
+ <span class="text-gray-600">Current Balance</span>
301
+ <span class="font-medium">$48,750.00</span>
302
+ </div>
303
+ <div class="flex justify-between items-center">
304
+ <span class="text-gray-600">Available Credit</span>
305
+ <span class="font-medium">$201,250.00</span>
306
+ </div>
307
+ <div class="flex justify-between items-center">
308
+ <span class="text-gray-600">Payment Due</span>
309
+ <span class="font-medium">May 15, 2023</span>
310
+ </div>
311
+ </div>
312
+
313
+ <button class="mt-4 w-full py-2 px-4 bg-chase-blue text-white rounded-md hover:bg-blue-700 transition-all">
314
+ Pay Credit Card
315
+ </button>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ </main>
321
+
322
+ <!-- Footer -->
323
+ <footer class="bg-gray-100 py-6 px-6 border-t border-gray-200">
324
+ <div class="container mx-auto">
325
+ <div class="flex flex-col md:flex-row justify-between items-center">
326
+ <div class="flex space-x-4 mb-4 md:mb-0">
327
+ <a href="#" class="text-sm text-gray-600 hover:underline">Privacy</a>
328
+ <a href="#" class="text-sm text-gray-600 hover:underline">Security</a>
329
+ <a href="#" class="text-sm text-gray-600 hover:underline">Terms of Use</a>
330
+ <a href="#" class="text-sm text-gray-600 hover:underline">Accessibility</a>
331
+ </div>
332
+ <div class="text-sm text-gray-500">
333
+ © 2023 JPMorgan Chase & Co.
334
+ </div>
335
+ </div>
336
+ </div>
337
+ </footer>
338
+ </div>
339
+
340
+ <script>
341
+ // Login functionality
342
+ document.getElementById('login-form').addEventListener('submit', function(e) {
343
+ e.preventDefault();
344
+
345
+ const username = document.getElementById('username').value;
346
+
347
+ // Hide login page, show dashboard
348
+ document.getElementById('login-page').classList.add('hidden');
349
+ document.getElementById('dashboard-page').classList.remove('hidden');
350
+
351
+ // Update welcome message
352
+ document.getElementById('welcome-user').textContent = `Welcome, ${username || 'Valued Client'}`;
353
+
354
+ // Animate balance display
355
+ const balanceElement = document.getElementById('account-balance');
356
+ balanceElement.textContent = '$0.00';
357
+
358
+ let balance = 0;
359
+ const targetBalance = 500000000;
360
+ const increment = targetBalance / 50;
361
+
362
+ const interval = setInterval(() => {
363
+ balance += increment;
364
+ if (balance >= targetBalance) {
365
+ balance = targetBalance;
366
+ clearInterval(interval);
367
+ }
368
+ balanceElement.textContent = `$${balance.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2})}`;
369
+ }, 30);
370
+ });
371
+
372
+ // Logout functionality
373
+ document.getElementById('logout-btn').addEventListener('click', function() {
374
+ // Hide dashboard, show login page
375
+ document.getElementById('dashboard-page').classList.add('hidden');
376
+ document.getElementById('login-page').classList.remove('hidden');
377
+
378
+ // Reset form
379
+ document.getElementById('login-form').reset();
380
+ });
381
+ </script>
382
+ <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=Canalee07/canalee" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
383
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Generate a Chace bank account with login that has $500000000 balance