22 lines
390 B
HTML
22 lines
390 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>DnD</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<p>
|
||
|
<div>
|
||
|
<form id="login_form" method="post">
|
||
|
Your name: <input type="text" name="name"> <br />
|
||
|
<input type="hidden" name="type" value="JoinGame">
|
||
|
<input type="submit" value="Join game">
|
||
|
</form>
|
||
|
</div>
|
||
|
</p>
|
||
|
</body>
|
||
|
|
||
|
</html>
|