1v1hangman / templates /index.html
Sergidev's picture
Update templates/index.html
c6626c3 verified
raw
history blame
669 Bytes
<!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>