-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.html
85 lines (85 loc) · 3.65 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<link rel="stylesheet" href="src/styles.css" />
<title>Pub/Sub rewind channel</title>
</head>
<body class="font-inter">
<div id="landing-page" class="min-h-screen flex items-center justify-center bg-gray-100">
<div class="bg-white p-8 rounded-lg shadow-lg w-96">
<h2 class="text-2xl mb-6 text-center">Live Football League Odds</h2>
<p>Watch real-time odds movement for today's Football League match.</p>
<div class="flex flex-col gap-4">
<button
id="pre-load-odds"
class="uk-btn uk-btn-primary uk-border-rounded-right whitespace-nowrap">Load Live Match Odds</button>
</div>
</div>
</div>
<div id="game" class="min-h-screen bg-gray-100 p-8" style="display: none;">
<div class="max-w-4xl mx-auto">
<div class="bg-white rounded-lg shadow-lg p-6 mb-8">
<div class="flex justify-between items-center text-2xl font-bold">
<span>
<span class="hidden sm:inline">Royal Knights</span>
<span class="sm:hidden">R K</span>
</span>
<span id="score" class="bg-gray-800 text-white px-4 py-2 rounded">0-0</span>
<span>
<span class="hidden sm:inline">North Rangers</span>
<span class="sm:hidden">N R</span>
</span>
</div>
</div>
<div class="grid grid-cols-3 gap-6 mb-8">
<div class="bg-white rounded-lg shadow p-4">
<h3 class="text-lg font-semibold mb-2">Home Win</h3>
<p id="current-home" class="text-3xl font-bold text-green-600">2.50</p>
</div>
<div class="bg-white rounded-lg shadow p-4">
<h3 class="text-lg font-semibold mb-2">Draw</h3>
<p id="current-draw" class="text-3xl font-bold text-blue-600">3.42</p>
</div>
<div class="bg-white rounded-lg shadow p-4">
<h3 class="text-lg font-semibold mb-2">Away Win</h3>
<p id="current-away" class="text-3xl font-bold text-red-600">2.87</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-xl font-bold mb-4">Next Goal</h2>
<div class="grid grid-cols-3 gap-4">
<div class="bg-gray-50 p-4 rounded">
<h3 class="font-medium mb-2">Royal Knights</h3>
<p id="next-goal-home" class="text-2xl font-bold">1.99</p>
</div>
<div class="bg-gray-50 p-4 rounded">
<h3 class="font-medium mb-2">North Rangers</h3>
<p id="next-goal-away" class="text-2xl font-bold">1.91</p>
</div>
<div class="bg-gray-50 p-4 rounded">
<h3 class="font-medium mb-2">No Goal</h3>
<p id="next-goal-none" class="text-2xl font-bold">2.66</p>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h2 class="text-xl font-bold mb-4">Odds Movement History</h2>
<div id="history" class="space-y-4">
<div class="border-b pb-2">
<div class="flex justify-between text-sm text-gray-600">
<span>Home: 2.50</span>
<span>Draw: 3.42</span>
<span>Away: 2.87</span>
<span>11:38:06</span>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="src/script.ts"></script>
</body>
</html>