Files
main-website/poker-paf/config.html
T
2026-03-20 01:39:04 +01:00

43 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Créer une partie - PokerPaf</title>
<style>
.player-row { margin-bottom: 10px; }
</style>
<link rel="stylesheet" href="css/config.css">
</head>
<body>
<div class="container">
<button onclick="window.location.href='index.html'" class="btn-back">◀️ Accueil</button>
<h1>Configuration de la partie</h1>
<form id="create_game_form">
<label>Nom de partie :</label>
<input type="text" name="game_name" placeholder="Nom de partie" required><br><br>
<label>Somme de départ :</label>
<input type="number" name="start_money" value="1000" required><br><br>
<label>Blind :</label>
<input type="number" name="blind" value="20" required><br><br>
<label>Joueurs :</label>
<label class="info">(Maximum 8 joueurs)</label><br>
<div id="players_container">
<div class="player-row">
<p>1</p><input type="text" name="players[]" placeholder="Nom du joueur" required>
</div>
</div>
<br>
<button type="button" onclick="addPlayer()"> Ajouter un joueur</button>
<br>
<input type="submit" value="Démarrer la partie">
</form>
</div>
</body>
<script src="js/config.js"></script>
</html>