blob: 122c80b053b2174801f1ead0b4394190182f2d68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
</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>
</body>
</html>
|