moth/html/register.html

26 lines
705 B
HTML
Raw Normal View History

2010-09-01 17:39:46 -06:00
<!DOCTYPE html>
<html>
<head>
<title>Team Registration</title>
<link rel="stylesheet" href="ctf.css" type="text/css">
</head>
<body>
<h1>Team Registration</h1>
2011-03-08 23:06:21 -07:00
<p>
Before you can use a token, you must choose a team name.
You can only do this once per token,
so make sure it's the team name you actually want.
Staff are unable to make changes to team names.
2011-03-08 23:06:21 -07:00
</p>
<form method="get" action="register.cgi">
<label>Team Hash (Token):</label>
<input type="text" name="h">
<br>
2010-09-01 17:39:46 -06:00
<label>Team Name:</label>
<input type="text" name="n">
<br>
2010-09-01 17:39:46 -06:00
<input type="submit" value="Register">
</form>
</body>
</html>