-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (74 loc) · 2.66 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
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
<!DOCTYPE html>
<html>
<head>
<title>Erhalte die Bundesliga 1 Daten</title>
<link rel='icon' type='image/x-icon' href='favicon.ico'>
<link href='style.css' rel='stylesheet'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js'></script>
</head>
<body>
<h1>Erhalte die Bundesliga 1 Daten (Saison 23/24)</h1>
<form>Wähle dein Team:
<select name='selectTeam' id='selectTeam'>
<option>Keine</option>
<option>Augsburg</option>
<option>Bayern</option>
<option>Bochum</option>
<option>Bremen</option>
<option>Darmstadt</option>
<option>Dortmund</option>
<option>Frankfurt</option>
<option>Freiburg</option>
<option>Gladbach</option>
<option>Heidenheim</option>
<option>Hoffenheim</option>
<option>Köln</option>
<option>Leipzig</option>
<option>Leverkusen</option>
<option>Mainz</option>
<option>Stuttgart</option>
<option>Union Berlin</option>
<option>Wolfsburg</option>
</select>
</form>
<h3 id='selectedT'>Deine gewähltes Team ist: Keine</h3>
<!-- options added with js -->
<form style='margin-top:40px;' id='selectGameText' class='hidden'>Wähle von welchem Spiel du informationen erhalten möchtest:
<select name='selectGame', id='selectGame'></select>
</form>
<h3 id='selectedG' class='hidden'>Dein gewähltes Spiel ist: 0</h3>
<table id='dataTable' class='hidden'>
<tr> <!-- header -->
<th>H/A</th> <!-- Heim/Auswärts -->
<th>Spieltag</th>
<th>Datum (JAHR-MM-TT)</th>
<th>Gegner</th>
<th class='text-center'>Ergebnis</th>
<th class='text-center'>G | U | V</th>
<th class='text-center'>Tore</th>
<th class='text-center'>Diff.</th>
<th class='text-center'>Punkte</th>
<th style='text-align: right;'>Platz</th>
</tr>
<tr> <!-- actual data -->
<th id='ha'>Heim</th>
<th id='spielt'>0</th>
<th id='datum'>2023/01/01</th>
<th id='gegner'>Default</th>
<th id='ergebnis' class='text-center'>0-0</th>
<th id='guv' class='text-center'>0 | 0 | 0</th>
<th id='tore' class='text-center'>0:0</th>
<th id='diff' class='text-center'>+0</th>
<th id='punkte' class='text-center'>0</th>
<th id='platz' style='text-align: right;'>0</th>
</tr>
</table>
<h4 id='tableText' class='hidden'>NOTIZ: Alle Daten, die bei GUV beginnen, sind immer aktuell! Sie können dies für vergangene Spiele nicht ändern!</h4>
<!-- handles changing text below forms -->
<script src='text_handler.js'></script>
<!-- adds all of the options for 'selectedG' -->
<script src='add_options.js'></script>
<!-- handles getting table data and updating the table -->
<script src='get_data.js'></script>
</body>
</html>