diff options
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/templates/index.html b/templates/index.html index b2c777f..545b635 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,17 +5,10 @@ <title>Rusted Ambulator</title> </head> <body> -<h1>Sessions</h1> -<ul> - {% for (id, session) in sessions %} - <li> - <span>{{session.steam_name}}'s game ({{id}})</span> - <form action="/session/{{id}}"> - <input name="passcode" placeholder="Passcode"> - <input type="submit"> - </form> - </li> - {% endfor %} -</ul> +<form action="/find-session"> + <label for="id">Session ID</label> + <input id="id" name="id" placeholder="000000" required> + <input type="submit"> +</form> </body> </html>
\ No newline at end of file |
