diff options
| author | Jomar Milan <jomarm@jomarm.com> | 2026-05-31 12:22:41 -0700 |
|---|---|---|
| committer | Jomar Milan <jomarm@jomarm.com> | 2026-05-31 12:22:41 -0700 |
| commit | a2e55df0eeea9709175dd0a26c1e09bdaa60841a (patch) | |
| tree | 584103be1f6b7d615cbc8d4e117e0107732fedda /templates/session.html | |
| parent | e104c8ed4a41e790dfd03e822a923c4df7b082b3 (diff) | |
Add websocket route
Diffstat (limited to 'templates/session.html')
| -rw-r--r-- | templates/session.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/session.html b/templates/session.html index 6319d05..9133df6 100644 --- a/templates/session.html +++ b/templates/session.html @@ -3,14 +3,14 @@ <head> <meta charset="UTF-8"> <title>{{session.steam_name}}'s game</title> - <script src="/dist/session.js" defer></script> + <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"> + <select id="color-select" disabled> <option value="">None selected</option> <hr> {% for (color, _) in session.hands %} |
