summaryrefslogtreecommitdiff
path: root/templates/session.html
blob: d0b6ddd2fb1d573b8f399d4da69aaa45b69dcd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{{session.steam_name}}'s game</title>
    <script id="session-script" data-id="{{id}}" src="/dist/session.js" defer></script>
    <link href="/dist/session.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>{{session.steam_name}}'s game</h1>
<form id="player-selection">
    <h2>Player Selection</h2>
    <label for="color-select">Your color:</label>
    <select id="color-select" disabled>
        <option value="">None selected</option>
        <hr>
    </select>
</form>
<h2>Hand</h2>
<div id="hand"></div>
</body>
</html>