mirror of https://github.com/dirtbags/moth.git
22 lines
573 B
HTML
22 lines
573 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Team Registration</title>
|
|
<link rel="stylesheet" href="ctf.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
<h1>Team Registration</h1>
|
|
<p>
|
|
Please register a team for yourself during this training. This
|
|
team is just for the training portion; it will not be the team you
|
|
play on during the exercise.
|
|
</p>
|
|
<form method="get" action="register.cgi">
|
|
<label>Team Name:</label>
|
|
<input type="text" name="team">
|
|
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</body>
|
|
</html>
|