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">
|
2017-02-06 10:14:23 -07:00
|
|
|
<meta charset="UTF-8">
|
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">
|
|
|
|
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
|
|
|
|
<img src="images/doe.png" alt="US Department Of Energy">
|
2017-02-05 18:06:36 -07:00
|
|
|
<img src="images/inl.png" alt="Idaho National Laboratory">
|
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>
|