Dominion/static/index.html

22 lines
409 B
HTML
Raw Normal View History

2020-12-28 23:30:20 +01:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>DnD</title>
</head>
<body>
<p>
<div>
<form id="login_form" method="post" action="/game">
Your name: <input type="text" name="name"> <br />
2020-12-31 16:54:38 +01:00
<input type="hidden" name="type" value="CreateGame">
2020-12-28 23:30:20 +01:00
<input type="submit" value="Create game">
</form>
</div>
</p>
</body>
</html>