mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2025-12-18 15:07:49 +01:00
20 lines
585 B
HTML
20 lines
585 B
HTML
<!-- pong/tournament_waiting_room.html -->
|
|
<div class="tournament-waiting-room">
|
|
<h2>Tournament Waiting Room</h2>
|
|
|
|
<p>Players currently waiting: {{ players_count }}</p>
|
|
<p>Minimum players needed to start: {{ min_players_to_start }}</p>
|
|
|
|
<h3>Players:</h3>
|
|
<ul>
|
|
{% for player in players %}
|
|
<li>{{ player }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if players_count >= min_players_to_start %}
|
|
<button id="start-tournament-btn">Start Tournament</button>
|
|
{% else %}
|
|
<p>Waiting for more players to join...</p>
|
|
{% endif %}
|
|
</div> |