mirror of https://github.com/dirtbags/moth.git
35 lines
915 B
HTML
35 lines
915 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Welcome</title>
|
||
|
<link rel="stylesheet" href="basic.css">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
<link rel="icon" href="res/icon.svg" type="image/svg+xml"
|
||
|
><link rel="icon" href="res/icon.png" type="image/png">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome</h1>
|
||
|
<section>
|
||
|
<h2>Register your team</h2>
|
||
|
|
||
|
<form action="register" method="post">
|
||
|
Team ID: <input name="id"> <br>
|
||
|
Team name: <input name="name">
|
||
|
<input type="submit" value="Register">
|
||
|
</form>
|
||
|
|
||
|
<p>
|
||
|
If someone on your team has already registered,
|
||
|
proceed to the
|
||
|
<a href="puzzle-list.html">puzzles overview</a>.
|
||
|
</p>
|
||
|
</section>
|
||
|
<nav>
|
||
|
<ul>
|
||
|
<li><a href="puzzle-list.html">Puzzles</a></li>
|
||
|
<li><a href="scoreboard.html">Scoreboard</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</body>
|
||
|
</html>
|