moth/www/register.html

53 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Team Registration</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>Team Registration</h1>
<section>
<h2>Register Your Team</h2>
<p>
Before you can use a team hash,
you must name your team.
You can only do this once,
so make sure it's the team name you actually want.
Staff are unable to make changes to team names.
</p>
<p>
If somebody on your team has already registered your hash,
you don't need to do it again.
</p>
<form method="get" action="cgi-bin/register.cgi">
<label>Team Hash:</label>
<input type="text" name="h">
<br>
<label>Team Name:</label>
<input type="text" name="n">
<br>
<input type="submit" value="Register">
</form>
</section>
<nav>
<ul>
<li><a href="register.html">Register</a></li>
<li><a href="puzzles.html">Puzzles</a></li>
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
<section id="sponsors">
<img src="images/logo0.png" alt="">
<img src="images/logo1.png" alt="">
<img src="images/logo2.png" alt="">
<img src="images/logo3.png" alt="">
<img src="images/logo4.png" alt="">
</section>
</body>
</html>