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

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +40 -0
templates/index.html ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Cricket Tournament</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <h1>Welcome to the Cricket Tournament App</h1>
12
+ <nav>
13
+ <ul>
14
+ <li><a href="/live_scoring">Live Scoring</a></li>
15
+ <li><a href="/scorecard">Professional 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">Player/Team/Umpire Lookup</a></li>
19
+ </ul>
20
+ </nav>
21
+ </header>
22
+
23
+ <main>
24
+ <section>
25
+ <h2>Features</h2>
26
+ <ul>
27
+ <li><a href="/live_scoring">Get instant updates on ongoing matches with Live Scoring</a></li>
28
+ <li><a href="/scorecard">Explore player performances and match outcomes with a Professional Scorecard</a></li>
29
+ <li><a href="/leaderboards">Track and compare your cricket stats with Leaderboards</a></li>
30
+ <li><a href="/tournament">Seamlessly Organize and Plan Tournaments</a></li>
31
+ <li><a href="/lookup">Find players, teams, umpires, and scorers</a></li>
32
+ </ul>
33
+ </section>
34
+ </main>
35
+
36
+ <footer>
37
+ <p>&copy; 2025 Cricket Tournament. All rights reserved.</p>
38
+ </footer>
39
+ </body>
40
+ </html>