cricket_app / templates /tournament_organizer.html
dschandra's picture
Create tournament_organizer.html
d5b0d53 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Organize Tournament</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Organize Tournament</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="/leaderboards">Leaderboards</a></li>
<li><a href="/lookup">Lookup</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Tournament Details</h2>
<form action="/tournament" method="POST">
<label for="tournament_name">Tournament Name</label>
<input type="text" id="tournament_name" name="tournament_name" required>
<label for="start_date">Start Date</label>
<input type="date" id="start_date" name="start_date" required>
<label for="end_date">End Date</label>
<input type="date" id="end_date" name="end_date" required>
<button type="submit">Organize Tournament</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2025 Cricket Tournament. All rights reserved.</p>
</footer>
</body>
</html>