Sergidev commited on
Commit
578bab9
·
verified ·
1 Parent(s): 320f5d6

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +5 -2
templates/index.html CHANGED
@@ -10,9 +10,12 @@
10
  <div class="container">
11
  <h1>1v1 Hangman</h1>
12
  <button id="playButton">Play</button>
13
- <div id="sessionInfo" style="display: none;">
14
  <p>Session ID: <span id="sessionId"></span></p>
15
- <p id="waitingMessage">Waiting for player 2...</p>
 
 
 
16
  </div>
17
  </div>
18
  <script src="{{ url_for('static', filename='js/game.js') }}"></script>
 
10
  <div class="container">
11
  <h1>1v1 Hangman</h1>
12
  <button id="playButton">Play</button>
13
+ <div id="waitingMessage" style="display: none;">
14
  <p>Session ID: <span id="sessionId"></span></p>
15
+ <p>Waiting for Player 2...</p>
16
+ </div>
17
+ <div id="gameStarting" style="display: none;">
18
+ <p>Starting game...</p>
19
  </div>
20
  </div>
21
  <script src="{{ url_for('static', filename='js/game.js') }}"></script>