Spaces:
Paused
Paused
Update templates/index.html
Browse files- 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="
|
14 |
<p>Session ID: <span id="sessionId"></span></p>
|
15 |
-
<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>
|