-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.38 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon"> <!-- Adjust the href if your favicon is in a different folder -->
<title>La Podrida - Contador de Puntos</title>
</head>
<body>
<div class="container">
<h1>La Podrida - Contador</h1>
<div id="numPlayersDefinition">
<label for="numPlayers">Número de Jugadores (3-6):</label>
<input type="number" id="numPlayers" min="3" max="6" value="3">
<button id="setPlayers" class="stepButton">Establecer Jugadores</button>
</div>
<div id="playerNamesContainer" class="hidden">
<h2>Nombres de Jugadores</h2>
<div id="playerInputs"></div>
</div>
<div id="scoreManager" class="hidden">
<h2>Juego en Curso</h2>
<table id="scoreTable">
<thead>
<tr>
<th>Ronda</th>
<!-- Las columnas de los jugadores se llenarán dinámicamente -->
</tr>
<tr id="totalRow">
<td>Total</td>
<!-- Los totales se llenarán dinámicamente -->
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id="handManager">
<h3 id="round-title">Puntos por Ronda</h3>
<table id="handTable">
<thead>
<tr>
<th>Jugador</th>
<th>P. Ronda</th>
<th>Cumplido</th>
<th>Bazas</th>
</tr>
</thead>
<tbody>
<!-- Las filas se agregarán dinámicamente -->
</tbody>
</table>
<div id="handStep">
<!-- <button id="prevHand" class="stepButton">Anterior Mano</button> -->
<button id="nextHand" class="stepButton" onclick="nextHand()">Siguiente Mano</button>
</div>
</div>
</div>
<p class="copyright">© Created by Ines CV</p>
</div>
<script src="script.js"></script>
</body>
</html>