-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.64 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="public/css/tables.css">
<link rel="stylesheet" href="public/css/main.css">
</head>
<body>
<form>
<button class="buttons" id="currentMonth">ACTUALIZAR ESTE MES</button>
<input type="month" min="2022-09" value="2022-10" id="input-date"></input>
<button class="buttons" id="customMonth">ACTUALIZAR MES PERSONALIZADO</button>
<button class="buttons" id="postInTable">POSTEAR EN LA TABLA</button>
<input class="inputText" id="databaseId" type="text">
<input type="checkbox" text="Hola" id="team1"><label for="team1">High Elo Group</label>
<input type="checkbox" text="Hola" id="team2"><label for="team2">Low Elo Group</label>
<input type="button" id="submit-btn" value="Enviar">
</form>
<table class="table table-borderer">
<thead>
<th><b>Partida</b></th>
<th><b>Vencedor</b></th>
<th><b>Derrotado</b></th>
<th><b>Fecha</b></th>
<th><b>Razón de la victoria</b></th>
<th><b>Replay</b></th>
<th><b>White Player</b></th>
<th><b>Black Player</b></th>
</thead>
<tbody id="tabla-registro">
</tbody>
</table>
<script src="public/javascript/main.js" type="text/javascript"></script>
</body>
</html>