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

    <main>
        <section>
            <h2>Top Performers</h2>
            <table>
                <thead>
                    <tr>
                        <th>Player</th>
                        <th>Points</th>
                    </tr>
                </thead>
                <tbody>
                    {% for player in rankings %}
                    <tr>
                        <td>{{ player['player'] }}</td>
                        <td>{{ player['points'] }}</td>
                    </tr>
                    {% endfor %}
                </tbody>
            </table>
        </section>
    </main>

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