moth/html/register.html

44 lines
1020 B
HTML
Raw Normal View History

2010-09-01 17:39:46 -06:00
<!DOCTYPE html>
<html>
2015-04-10 16:37:21 -06:00
<head>
<title>Team Registration</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<h1>Team Registration</h1>
<section>
2015-04-12 09:16:48 -06:00
<h2>Register Your Team</h2>
2015-04-10 16:37:21 -06:00
<p>
Before you can use a token, you must choose a team name.
2015-04-12 09:16:48 -06:00
You can only do this once,
2015-04-10 16:37:21 -06:00
so make sure it's the team name you actually want.
Staff are unable to make changes to team names.
</p>
2015-04-12 09:16:48 -06:00
<p>
If somebody on your team has already registered your hash,
you don't need to do it again.
</p>
2015-04-10 16:37:21 -06:00
<form method="get" action="register.cgi">
2015-04-12 09:16:48 -06:00
<label>Team Hash:</label>
2015-04-10 16:37:21 -06:00
<input type="text" name="h">
<br>
<label>Team Name:</label>
<input type="text" name="n">
<br>
<input type="submit" value="Register">
</form>
</section>
2015-04-12 09:16:48 -06:00
<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>
2015-04-10 16:37:21 -06:00
</body>
2010-09-01 17:39:46 -06:00
</html>