summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: b2c777f8c8681db4c47e3f4ea9efd58dcc4518aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <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>
</body>
</html>