-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaginaSquadra.html
50 lines (48 loc) · 1.38 KB
/
paginaSquadra.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
<html>
<head>
<meta charset="UTF-8">
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript">
$(function() {
createTableStatistiche();
getTrattative();
});
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="style.css">
<!--<meta http-equiv="refresh" content="5; url=index.html" />-->
<title>LOGIN EFFETTUATO</title>
</head>
<body>
<nav>
<div id="Titolo">
<h1>SQUAD SEARCH</h1>
</div>
<div id="LogIn">
<h1 class="login">LogIn</h1>
</div>
<div id="Home">
</div>
</nav>
<!-- LOGIN EFFETTUATO CON SUCCESSO!
Verrai reindirizzato in homepage tra 5 secondi, se ciò non succede clicca <a href="index.html">qui</a> -->
<table id="tableStatistiche">
<tr>
<td>Giocatore</td>
<td>Presenze</td>
<td>Gol</td>
<td>Assist</td>
<td>Rigori</td>
<td>Minuti Giocati</td>
<td>Cartellini Gialli</td>
<td>Cartellini Rossi</td>
<td>Gol Subiti</td>
</tr>
</table>
<p id="aggiornamentoStatistiche"></p>
<p id="trattative"></p>
</body>
</html>