diff options
Diffstat (limited to 'templates/session.html')
| -rw-r--r-- | templates/session.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/session.html b/templates/session.html new file mode 100644 index 0000000..6319d05 --- /dev/null +++ b/templates/session.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>{{session.steam_name}}'s game</title> + <script 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"> + <option value="">None selected</option> + <hr> + {% for (color, _) in session.hands %} + <option value="{{color}}">{{color}}</option> + {% endfor %} + </select> +</form> +</body> +</html>
\ No newline at end of file |
