Add player-bet label

This commit is contained in:
2026-03-01 19:42:04 +01:00
parent c355883685
commit 4710d71835
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -303,4 +303,10 @@ button.btn-back {
border-radius: 5px;
font-size: 0.9rem;
transition: background 0.3s, color 0.3s;
}
.player-bet {
font-size: 0.9rem;
color: rgb(185, 185, 185);
margin-top: 5px;
}
+1
View File
@@ -84,6 +84,7 @@ foreach ($players as $p) {
<span class="player-name">J<?php echo ($index + 1); ?> : <?php echo htmlspecialchars($p['name']); ?></span>
<span class="player-money"><?php echo $p['money']; ?> 🪙</span>
<span class="player-bet">Mise: <?php echo $p['current_bet'] ?? 0; ?> 🪙</span>
</div>
</div>
<?php endforeach; ?>