diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..b97f082 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Rusted Ambulator</title> +</head> +<body> +<h2>Sessions</h2> +<ul> +{% for session in sessions %} + <li> + <span>{{session.steam_name}}'s game</span> + <form action="/session/{{session.steam_id}}"> + <input name="passcode" placeholder="Passcode"> + <input type="submit"> + </form> + </li> +{% endfor %} +</ul> +</body> +</html>
\ No newline at end of file |
