File size: 669 Bytes
c6626c3
7ef7190
c6626c3
 
 
 
 
 
 
 
 
 
 
 
 
7ef7190
c6626c3
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>1v1 Hangman</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
    <div class="container">
        <h1>1v1 Hangman</h1>
        <button id="playButton">Play</button>
        <div id="sessionInfo" style="display: none;">
            <p>Session ID: <span id="sessionId"></span></p>
            <p id="waitingMessage">Waiting for player 2...</p>
        </div>
    </div>
    <script src="{{ url_for('static', filename='js/game.js') }}"></script>
</body>
</html>