-
Notifications
You must be signed in to change notification settings - Fork 0
/
telecronista.html
97 lines (95 loc) · 4.18 KB
/
telecronista.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard telecronista</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link rel="stylesheet" href="css/custom.css" />
</head>
<body>
<nav class="navbar navbar-expand-xl navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img class="d-block mx-auto mb-4" src="images/football.png" width="40"/>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarBasic" aria-controls="navbarBasic" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse show" id="navbarBasic">
<ul class="navbar-nav me-auto mb-2 mb-xl-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Dashboard telecronista</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-4">
<di class="row">
<div class="col col-lg-6 col-md-12">
<div class="row">
<div class="col col-md-8">
<h2>Italia - Francia</h2>
<p>9 luglio 2006</p>
<img class="float-end start-button focus" src="images/start.png" height="35px" onclick="sendAzione('start')"/>
</div>
<div class="col col-md-4 text-end risultato">
<img src="images/italy.png" height="40px">
<span id="result-italy" data-rs-italy="0">0</span>
<span>-</span>
<img src="images/france.png" height="40px">
<span id="result-france" data-rs-france="0">0</span>
</div>
</div>
<table class="table">
<tbody>
<tr>
<td>Italia</td>
<td>Francia</td>
</tr>
<tr>
<td>
<table class="table">
<theader>
<tr>
<th>N</th>
<th>Giocatore</th>
<th>#</th>
</tr>
</theader>
<tbody id="tbitalia">
</tbody>
</table>
</td>
<td>
<table class="table">
<theader>
<tr>
<th>N</th>
<th>Giocatore</th>
<th>#</th>
</tr>
</theader>
<tbody id="tbfrancia">
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<div class="col top-8 left-4" id="eventi">
</div>
</di>
</div>
<script src="https://cdn.jsdelivr.net/npm/appwrite@10.1.0"></script>
<script src="telecronista.js"></script>
<script>
getSquadra("Italia", "tbitalia");
getSquadra("Francia", "tbfrancia");
aggiornaRealTime();
</script>
</body>
</html>