File size: 1,015 Bytes
5285c82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Live Scoring</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Live Scoring</h1>
        <nav>
            <ul>
                <li><a href="/">Home</a></li>
                <li><a href="/scorecard">Scorecard</a></li>
                <li><a href="/leaderboards">Leaderboards</a></li>
                <li><a href="/tournament">Organize Tournament</a></li>
                <li><a href="/lookup">Lookup</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section>
            <h2>Ongoing Match Scores</h2>
            <div>
                <h3>Team 1: {{ scores['team1'] }}</h3>
                <h3>Team 2: {{ scores['team2'] }}</h3>
            </div>
        </section>
    </main>

    <footer>
        <p>&copy; 2025 Cricket Tournament. All rights reserved.</p>
    </footer>
</body>
</html>