moth/www/register.html

53 lines
1.3 KiB
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>
2015-04-20 12:08:21 -06:00
<meta name="viewport" content="width=device-width">
2015-04-19 23:14:31 -06:00
<link rel="stylesheet" href="style.css" type="text/css">
2015-04-10 16:37:21 -06:00
</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>
2015-04-12 11:33:53 -06:00
Before you can use a team hash,
you must name your team.
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-05-26 10:14:30 -06:00
<form method="get" action="cgi-bin/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-15 15:58:46 -06:00
<section id="sponsors">
2017-11-03 13:41:39 -06:00
<img src="images/logo0.png" alt="">
<img src="images/logo1.png" alt="">
<img src="images/logo2.png" alt="">
<img src="images/logo3.png" alt="">
2018-05-10 10:54:36 -06:00
<img src="images/logo4.png" alt="">
2015-04-15 15:58:46 -06:00
</section>
2015-04-10 16:37:21 -06:00
</body>
2010-09-01 17:39:46 -06:00
</html>