Nasreddine97 commited on
Commit
f2cbe16
·
verified ·
1 Parent(s): 3bccf29

Add a login page - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +504 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Albet
3
- emoji: 🐠
4
- colorFrom: gray
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: albet
3
+ emoji: 🐳
4
+ colorFrom: red
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,504 @@
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>ALBET - Online Betting & Casino</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#1a202c',
15
+ secondary: '#2d3748',
16
+ accent: '#e53e3e',
17
+ highlight: '#f6ad55',
18
+ success: '#48bb78'
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
26
+
27
+ body {
28
+ font-family: 'Montserrat', sans-serif;
29
+ background: linear-gradient(to bottom, #1a202c, #2d3748);
30
+ min-height: 100vh;
31
+ color: #e2e8f0;
32
+ }
33
+
34
+ .game-card {
35
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
36
+ }
37
+
38
+ .game-card:hover {
39
+ transform: translateY(-5px);
40
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
41
+ }
42
+
43
+ .odds-btn {
44
+ transition: all 0.2s ease;
45
+ }
46
+
47
+ .odds-btn:hover {
48
+ background-color: #f6ad55;
49
+ color: #1a202c;
50
+ }
51
+
52
+ .marquee {
53
+ white-space: nowrap;
54
+ overflow: hidden;
55
+ display: inline-block;
56
+ animation: marquee 20s linear infinite;
57
+ }
58
+
59
+ @keyframes marquee {
60
+ 0% { transform: translate(100%, 0); }
61
+ 100% { transform: translate(-100%, 0); }
62
+ }
63
+
64
+ .blink {
65
+ animation: blink 2s infinite;
66
+ }
67
+
68
+ @keyframes blink {
69
+ 0% { opacity: 1; }
70
+ 50% { opacity: 0.5; }
71
+ 100% { opacity: 1; }
72
+ }
73
+ </style>
74
+ </head>
75
+ <body class="bg-primary text-gray-200">
76
+ <!-- Header with navigation -->
77
+ <header class="bg-secondary sticky top-0 z-50 shadow-lg">
78
+ <div class="container mx-auto px-4 py-3">
79
+ <div class="flex items-center justify-between">
80
+ <div class="flex items-center">
81
+ <div class="text-2xl font-bold text-white">
82
+ <span class="text-accent">A</span>LBET
83
+ </div>
84
+ <nav class="hidden md:flex ml-10 space-x-8">
85
+ <a href="#" class="hover:text-highlight font-medium">Sports</a>
86
+ <a href="#" class="hover:text-highlight font-medium">Live</a>
87
+ <a href="#" class="hover:text-highlight font-medium">Casino</a>
88
+ <a href="#" class="hover:text-highlight font-medium">Live Casino</a>
89
+ <a href="#" class="hover:text-highlight font-medium">Promotions</a>
90
+ </nav>
91
+ </div>
92
+
93
+ <div class="flex items-center space-x-4">
94
+ <button class="bg-accent hover:bg-red-700 text-white px-4 py-2 rounded font-medium">
95
+ Login
96
+ </button>
97
+ <button class="bg-success hover:bg-green-600 text-white px-4 py-2 rounded font-medium">
98
+ Register
99
+ </button>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ </header>
104
+
105
+ <!-- Promotional banner -->
106
+ <div class="bg-gradient-to-r from-highlight to-accent py-2">
107
+ <div class="container mx-auto px-4">
108
+ <div class="flex items-center justify-center">
109
+ <span class="font-bold mr-2 blink"><i class="fas fa-gift mr-1"></i> SPECIAL OFFER:</span>
110
+ <div class="marquee">
111
+ <span>Welcome Bonus 100% up to €100 + 30 Free Spins for all new players! Register now!</span>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- Main content -->
118
+ <main class="container mx-auto px-4 py-8">
119
+ <!-- Quick bet section -->
120
+ <div class="bg-secondary rounded-lg p-6 mb-8">
121
+ <h2 class="text-xl font-bold mb-4">Quick Bet</h2>
122
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
123
+ <div class="bg-primary p-4 rounded">
124
+ <div class="flex justify-between items-center mb-2">
125
+ <span class="text-sm">Manchester United vs Liverpool</span>
126
+ <span class="text-xs text-highlight">Today 20:00</span>
127
+ </div>
128
+ <div class="flex justify-between mt-4">
129
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">1.85</button>
130
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">3.40</button>
131
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3">4.20</button>
132
+ </div>
133
+ </div>
134
+
135
+ <div class="bg-primary p-4 rounded">
136
+ <div class="flex justify-between items-center mb-2">
137
+ <span class="text-sm">Barcelona vs Real Madrid</span>
138
+ <span class="text-xs text-highlight">Tomorrow 21:00</span>
139
+ </div>
140
+ <div class="flex justify-between mt-4">
141
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">2.10</button>
142
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">3.25</button>
143
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3">3.50</button>
144
+ </div>
145
+ </div>
146
+
147
+ <div class="bg-primary p-4 rounded">
148
+ <div class="flex justify-between items-center mb-2">
149
+ <span class="text-sm">Bayern Munich vs Dortmund</span>
150
+ <span class="text-xs text-highlight">Tomorrow 18:30</span>
151
+ </div>
152
+ <div class="flex justify-between mt-4">
153
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">1.75</button>
154
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">3.60</button>
155
+ <button class="odds-btn bg-secondary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3">4.50</button>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Sports categories -->
162
+ <div class="mb-8">
163
+ <h2 class="text-2xl font-bold mb-4">Sports Betting</h2>
164
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
165
+ <div class="game-card bg-secondary rounded-lg p-4 text-center cursor-pointer">
166
+ <i class="fas fa-futbol text-4xl mb-2 text-highlight"></i>
167
+ <h3 class="font-medium">Football</h3>
168
+ </div>
169
+ <div class="game-card bg-secondary rounded-lg p-4 text-center cursor-pointer">
170
+ <i class="fas fa-basketball-ball text-4xl mb-2 text-highlight"></i>
171
+ <h3 class="font-medium">Basketball</h3>
172
+ </div>
173
+ <div class="game-card bg-secondary rounded-lg p-4 text-center cursor-pointer">
174
+ <i class="fas fa-table-tennis text-4xl mb-2 text-highlight"></i>
175
+ <h3 class="font-medium">Tennis</h3>
176
+ </div>
177
+ <div class="game-card bg-secondary rounded-lg p-4 text-center cursor-pointer">
178
+ <i class="fas fa-hockey-puck text-4xl mb-2 text-highlight"></i>
179
+ <h3 class="font-medium">Ice Hockey</h3>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Live betting section -->
185
+ <div class="mb-8">
186
+ <div class="flex items-center mb-4">
187
+ <h2 class="text-2xl font-bold">Live Betting</h2>
188
+ <span class="ml-2 bg-accent text-white text-xs px-2 py-1 rounded-full">LIVE</span>
189
+ </div>
190
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
191
+ <div class="bg-secondary rounded-lg p-4">
192
+ <div class="flex justify-between items-center mb-2">
193
+ <div>
194
+ <span class="text-sm font-medium">Chelsea vs Arsenal</span>
195
+ <div class="text-xs text-highlight">65' - 2nd Half</div>
196
+ </div>
197
+ <span class="text-accent">1:2</span>
198
+ </div>
199
+ <div class="flex justify-between mt-4">
200
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">2.30</button>
201
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">3.10</button>
202
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3">3.50</button>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="bg-secondary rounded-lg p-4">
207
+ <div class="flex justify-between items-center mb-2">
208
+ <div>
209
+ <span class="text-sm font-medium">LA Lakers vs Chicago Bulls</span>
210
+ <div class="text-xs text-highlight">Q3 - 08:45</div>
211
+ </div>
212
+ <span class="text-accent">85:79</span>
213
+ </div>
214
+ <div class="flex justify-between mt-4">
215
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">1.45</button>
216
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3 mr-2">2.75</button>
217
+ <button class="odds-btn bg-primary hover:bg-highlight hover:text-primary py-2 px-4 rounded w-1/3">5.20</button>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Casino section -->
224
+ <div class="mb-8">
225
+ <h2 class="text-2xl font-bold mb-4">Popular Casino Games</h2>
226
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
227
+ <div class="game-card relative group overflow-hidden rounded-lg">
228
+ <img src="https://via.placeholder.com/300x200/2d3748/ffffff?text=Slots" alt="Slots" class="w-full h-40 object-cover">
229
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 flex items-center justify-center transition-opacity">
230
+ <button class="bg-highlight text-primary font-medium px-4 py-2 rounded">Play Now</button>
231
+ </div>
232
+ <div class="bg-secondary p-2">
233
+ <h3 class="text-sm font-medium">Mega Fortune</h3>
234
+ </div>
235
+ </div>
236
+
237
+ <div class="game-card relative group overflow-hidden rounded-lg">
238
+ <img src="https://via.placeholder.com/300x200/2d3748/ffffff?text=Roulette" alt="Roulette" class="w-full h-40 object-cover">
239
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 flex items-center justify-center transition-opacity">
240
+ <button class="bg-highlight text-primary font-medium px-4 py-2 rounded">Play Now</button>
241
+ </div>
242
+ <div class="bg-secondary p-2">
243
+ <h3 class="text-sm font-medium">European Roulette</h3>
244
+ </div>
245
+ </div>
246
+
247
+ <div class="game-card relative group overflow-hidden rounded-lg">
248
+ <img src="https://via.placeholder.com/300x200/2d3748/ffffff?text=Blackjack" alt="Blackjack" class="w-full h-40 object-cover">
249
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 flex items-center justify-center transition-opacity">
250
+ <button class="bg-highlight text-primary font-medium px-4 py-2 rounded">Play Now</button>
251
+ </div>
252
+ <div class="bg-secondary p-2">
253
+ <h3 class="text-sm font-medium">Classic Blackjack</h3>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="game-card relative group overflow-hidden rounded-lg">
258
+ <img src="https://via.placeholder.com/300x200/2d3748/ffffff?text=Poker" alt="Poker" class="w-full h-40 object-cover">
259
+ <div class="absolute inset-0 bg-black bg-opacity-60 opacity-0 group-hover:opacity-100 flex items-center justify-center transition-opacity">
260
+ <button class="bg-highlight text-primary font-medium px-4 py-2 rounded">Play Now</button>
261
+ </div>
262
+ <div class="bg-secondary p-2">
263
+ <h3 class="text-sm font-medium">Texas Hold'em</h3>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Promotions -->
270
+ <div class="mb-8">
271
+ <h2 class="text-2xl font-bold mb-4">Promotions & Bonuses</h2>
272
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
273
+ <div class="bg-gradient-to-r from-highlight to-accent rounded-lg p-6">
274
+ <div class="flex items-start">
275
+ <div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
276
+ <i class="fas fa-gift text-2xl"></i>
277
+ </div>
278
+ <div>
279
+ <h3 class="text-xl font-bold">Welcome Bonus</h3>
280
+ <p class="mt-2">Get 100% bonus up to ���100 + 30 free spins on your first deposit!</p>
281
+ <button class="mt-4 bg-white text-primary font-medium px-4 py-2 rounded">Claim Now</button>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <div class="bg-gradient-to-r from-green-500 to-success rounded-lg p-6">
287
+ <div class="flex items-start">
288
+ <div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
289
+ <i class="fas fa-money-bill-wave text-2xl"></i>
290
+ </div>
291
+ <div>
292
+ <h3 class="text-xl font-bold">Cashback Offer</h3>
293
+ <p class="mt-2">Get 10% cashback on your losses every week!</p>
294
+ <button class="mt-4 bg-white text-primary font-medium px-4 py-2 rounded">Learn More</button>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </main>
301
+
302
+ <!-- Footer -->
303
+ <footer class="bg-secondary py-10 mt-8">
304
+ <div class="container mx-auto px-4">
305
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
306
+ <div>
307
+ <div class="text-2xl font-bold text-white mb-4">
308
+ <span class="text-accent">A</span>LBET
309
+ </div>
310
+ <p class="text-sm">The best online betting platform with thousands of events and casino games.</p>
311
+ </div>
312
+
313
+ <div>
314
+ <h3 class="text-lg font-bold mb-4">Sports</h3>
315
+ <ul class="space-y-2 text-sm">
316
+ <li><a href="#" class="hover:text-highlight">Football</a></li>
317
+ <li><a href="#" class="hover:text-highlight">Basketball</a></li>
318
+ <li><a href="#" class="hover:text-highlight">Tennis</a></li>
319
+ <li><a href="#" class="hover:text-highlight">Ice Hockey</a></li>
320
+ <li><a href="#" class="hover:text-highlight">Volleyball</a></li>
321
+ </ul>
322
+ </div>
323
+
324
+ <div>
325
+ <h3 class="text-lg font-bold mb-4">Casino</h3>
326
+ <ul class="space-y-2 text-sm">
327
+ <li><a href="#" class="hover:text-highlight">Slots</a></li>
328
+ <li><a href="#" class="hover:text-highlight">Roulette</a></li>
329
+ <li><a href="#" class="hover:text-highlight">Blackjack</a></li>
330
+ <li><a href="#" class="hover:text-highlight">Poker</a></li>
331
+ <li><a href="#" class="hover:text-highlight">Live Casino</a></li>
332
+ </ul>
333
+ </div>
334
+
335
+ <div>
336
+ <h3 class="text-lg font-bold mb-4">Support</h3>
337
+ <ul class="space-y-2 text-sm">
338
+ <li><a href="#" class="hover:text-highlight">Help Center</a></li>
339
+ <li><a href="#" class="hover:text-highlight">Responsible Gaming</a></li>
340
+ <li><a href="#" class="hover:text-highlight">Terms & Conditions</a></li>
341
+ <li><a href="#" class="hover:text-highlight">Privacy Policy</a></li>
342
+ <li><a href="#" class="hover:text-highlight">Contact Us</a></li>
343
+ </ul>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm">
348
+ <p>© 2023 ALBET. All rights reserved. Gambling can be addictive, please play responsibly.</p>
349
+ <p class="mt-2">Must be 18+ to participate.</p>
350
+ </div>
351
+ </div>
352
+ </footer>
353
+
354
+ <!-- Login Modal -->
355
+ <div id="loginModal" class="fixed inset-0 bg-black bg-opacity-60 z-50 flex items-center justify-center hidden">
356
+ <div class="bg-secondary rounded-lg p-8 w-full max-w-md mx-4">
357
+ <div class="flex justify-between items-center mb-6">
358
+ <h2 class="text-2xl font-bold">Login to ALBET</h2>
359
+ <button id="closeLoginModal" class="text-gray-400 hover:text-white">
360
+ <i class="fas fa-times text-xl"></i>
361
+ </button>
362
+ </div>
363
+
364
+ <form id="loginForm">
365
+ <div class="mb-4">
366
+ <label for="username" class="block text-sm font-medium mb-2">Username or Email</label>
367
+ <input
368
+ type="text"
369
+ id="username"
370
+ class="w-full bg-primary border border-gray-600 rounded px-4 py-2 focus:outline-none focus:border-highlight"
371
+ placeholder="Enter your username or email"
372
+ required
373
+ >
374
+ </div>
375
+
376
+ <div class="mb-6">
377
+ <label for="password" class="block text-sm font-medium mb-2">Password</label>
378
+ <input
379
+ type="password"
380
+ id="password"
381
+ class="w-full bg-primary border border-gray-600 rounded px-4 py-2 focus:outline-none focus:border-highlight"
382
+ placeholder="Enter your password"
383
+ required
384
+ >
385
+ </div>
386
+
387
+ <div class="flex items-center justify-between mb-6">
388
+ <label class="flex items-center">
389
+ <input type="checkbox" class="form-checkbox bg-primary border-gray-600 rounded">
390
+ <span class="ml-2 text-sm">Remember me</span>
391
+ </label>
392
+ <a href="#" class="text-highlight hover:text-yellow-400 text-sm">Forgot Password?</a>
393
+ </div>
394
+
395
+ <button
396
+ type="submit"
397
+ class="w-full bg-accent hover:bg-red-700 text-white font-bold py-3 rounded transition-colors"
398
+ >
399
+ Login
400
+ </button>
401
+
402
+ <div class="text-center mt-6">
403
+ <p class="text-sm">
404
+ Don't have an account?
405
+ <a href="#" class="text-highlight hover:text-yellow-400 font-medium">Register Now</a>
406
+ </p>
407
+ </div>
408
+ </form>
409
+ </div>
410
+ </div>
411
+
412
+ <!-- Bet slip (fixed at bottom) -->
413
+ <div class="fixed bottom-0 right-0 left-0 bg-primary border-t border-gray-700 p-4 shadow-lg hidden md:block">
414
+ <div class="container mx-auto flex justify-between items-center">
415
+ <div class="flex items-center">
416
+ <i class="fas fa-receipt text-highlight text-xl mr-2"></i>
417
+ <span class="font-medium">Bet Slip (0 selections)</span>
418
+ </div>
419
+ <button class="bg-gray-600 text-white px-4 py-2 rounded font-medium opacity-50 cursor-not-allowed">
420
+ Place Bet
421
+ </button>
422
+ </div>
423
+ </div>
424
+
425
+ <script>
426
+ // Login modal functionality
427
+ const loginModal = document.getElementById('loginModal');
428
+ const loginButton = document.querySelector('button:contains("Login")');
429
+ const closeLoginModal = document.getElementById('closeLoginModal');
430
+ const loginForm = document.getElementById('loginForm');
431
+
432
+ // Show login modal
433
+ document.querySelectorAll('button').forEach(button => {
434
+ if (button.textContent.trim() === 'Login') {
435
+ button.addEventListener('click', function(e) {
436
+ e.preventDefault();
437
+ loginModal.classList.remove('hidden');
438
+ document.body.style.overflow = 'hidden';
439
+ });
440
+ }
441
+ });
442
+
443
+ // Close login modal
444
+ closeLoginModal.addEventListener('click', function() {
445
+ loginModal.classList.add('hidden');
446
+ document.body.style.overflow = 'auto';
447
+ });
448
+
449
+ // Close modal when clicking outside
450
+ loginModal.addEventListener('click', function(e) {
451
+ if (e.target === loginModal) {
452
+ loginModal.classList.add('hidden');
453
+ document.body.style.overflow = 'auto';
454
+ }
455
+ });
456
+
457
+ // Handle login form submission
458
+ loginForm.addEventListener('submit', function(e) {
459
+ e.preventDefault();
460
+ const username = document.getElementById('username').value;
461
+ const password = document.getElementById('password').value;
462
+
463
+ // Simple validation (in a real app, you'd send this to a server)
464
+ if (username && password) {
465
+ alert('Login successful! Welcome back to ALBET.');
466
+ loginModal.classList.add('hidden');
467
+ document.body.style.overflow = 'auto';
468
+
469
+ // Update login button to show logged in state
470
+ document.querySelectorAll('button').forEach(btn => {
471
+ if (btn.textContent.trim() === 'Login') {
472
+ btn.textContent = 'My Account';
473
+ btn.classList.remove('bg-accent', 'hover:bg-red-700');
474
+ btn.classList.add('bg-highlight', 'hover:bg-yellow-500', 'text-primary');
475
+ }
476
+ });
477
+ }
478
+ });
479
+
480
+ // Simple interactivity for odds buttons
481
+ document.querySelectorAll('.odds-btn').forEach(button => {
482
+ button.addEventListener('click', function() {
483
+ // Remove selected class from all buttons in the same group
484
+ const parent = this.closest('.bg-primary') || this.closest('.bg-secondary');
485
+ parent.querySelectorAll('.odds-btn').forEach(btn => {
486
+ btn.classList.remove('bg-highlight', 'text-primary');
487
+ });
488
+
489
+ // Add selected class to clicked button
490
+ this.classList.add('bg-highlight', 'text-primary');
491
+
492
+ // Update bet slip text
493
+ const betSlip = document.querySelector('.fa-receipt').parentElement;
494
+ betSlip.querySelector('span').textContent = 'Bet Slip (1 selection)';
495
+
496
+ // Enable place bet button
497
+ document.querySelector('[class*="bg-gray-600"]').classList.remove('bg-gray-600', 'opacity-50', 'cursor-not-allowed');
498
+ document.querySelector('[class*="bg-gray-600"]').classList.add('bg-success', 'hover:bg-green-600', 'cursor-pointer');
499
+ document.querySelector('[class*="bg-gray-600"]').textContent = 'Place Bet';
500
+ });
501
+ });
502
+ </script>
503
+ <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=Nasreddine97/albet" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
504
+ </html>