dschandra commited on
Commit
5285c82
·
verified ·
1 Parent(s): 3b62e7b

Create live_scoring.html

Browse files
Files changed (1) hide show
  1. templates/live_scoring.html +37 -0
templates/live_scoring.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Live Scoring</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <h1>Live Scoring</h1>
12
+ <nav>
13
+ <ul>
14
+ <li><a href="/">Home</a></li>
15
+ <li><a href="/scorecard">Scorecard</a></li>
16
+ <li><a href="/leaderboards">Leaderboards</a></li>
17
+ <li><a href="/tournament">Organize Tournament</a></li>
18
+ <li><a href="/lookup">Lookup</a></li>
19
+ </ul>
20
+ </nav>
21
+ </header>
22
+
23
+ <main>
24
+ <section>
25
+ <h2>Ongoing Match Scores</h2>
26
+ <div>
27
+ <h3>Team 1: {{ scores['team1'] }}</h3>
28
+ <h3>Team 2: {{ scores['team2'] }}</h3>
29
+ </div>
30
+ </section>
31
+ </main>
32
+
33
+ <footer>
34
+ <p>&copy; 2025 Cricket Tournament. All rights reserved.</p>
35
+ </footer>
36
+ </body>
37
+ </html>