-
Notifications
You must be signed in to change notification settings - Fork 5
/
vue.html
173 lines (172 loc) · 5.35 KB
/
vue.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Premier League 2020</title>
</head>
<body>
<h1>Premier League 2020</h1>
<section>
<h2>Standings</h2>
<table>
<thead>
<tr>
<td></td>
<th scope="col">Team</th>
<th scope="col">Games</th>
<th scope="col">Points</th>
<th scope="col">Wins</th>
<th scope="col">Losses</th>
<th scope="col">Draws</th>
<th scope="col">GF</th>
<th scope="col">GA</th>
<th scope="col">GD</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<th scope="row">Liverpool</th>
<td>4</td>
<td>12</td>
<td>4</td>
<td>0</td>
<td>0</td>
<td>10</td>
<td>0</td>
<td>10</td>
</tr>
<tr>
<td>2</td>
<th scope="row">Manchester City</th>
<td>4</td>
<td>10</td>
<td>3</td>
<td>0</td>
<td>1</td>
<td>12</td>
<td>4</td>
<td>8</td>
</tr>
<tr>
<td>3</td>
<th scope="row">Chelsea</th>
<td>4</td>
<td>8</td>
<td>2</td>
<td>0</td>
<td>2</td>
<td>9</td>
<td>5</td>
<td>4</td>
</tr>
<tr>
<td>4</td>
<th scope="row">Tottenham</th>
<td>4</td>
<td>7</td>
<td>2</td>
<td>1</td>
<td>1</td>
<td>7</td>
<td>7</td>
<td>0</td>
</tr>
<tr>
<td>5</td>
<th scope="row">Manchester United</th>
<td>4</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>6</td>
<td>-4</td>
</tr>
<tr>
<td>6</td>
<th scope="row">Arsenal</th>
<td>4</td>
<td>0</td>
<td>0</td>
<td>4</td>
<td>0</td>
<td>2</td>
<td>12</td>
<td>-10</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Games played at april 2nd, 2020</h2>
<table>
<thead>
<tr>
<th>Date</th><th>Home Team</th><th>Home Team Goals</th><th>Away Team Goals</th><th>Away Team</th>
</tr>
</thead>
<tbody>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
<tr>
<td>January 7th, 2020</td><td>Liverpool</td><td>7</td><td>2</td><td>Manchester United</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Encodage d’un nouveau match</h2>
<form action="manage.php" method="post">
<label for="match-date">Date du match</label>
<input type="text" id="match-date" name="match-date">
<br>
<label for="home-team">Équipe à domicile</label>
<select name="home-team" id="home-team">
<option value="arsenal">Arsenal</option>
<option value="chelsea">Chelsea</option>
<option value="liverpool">Liverpool</option>
<option value="manchester%20city">Manchester City</option>
<option value="manchester%20united">Manchester United</option>
<option value="tottenham">Tottenham</option>
</select>
<label for="home-team-unlisted">Équipe non listée ?</label>
<input type="text" name="home-team-unlisted" id="home-team-unlisted">
<br>
<label for="home-team-goals">Goals de l’équipe à domicile</label>
<input type="text" id="home-team-goals" name="home-team-goals">
<br>
<label for="away-team">Équipe visiteuse</label>
<select name="away-team" id="away-team">
<option value="arsenal">Arsenal</option>
<option value="chelsea">Chelsea</option>
<option value="liverpool">Liverpool</option>
<option value="manchester%20city">Manchester City</option>
<option value="manchester%20united">Manchester United</option>
<option value="tottenham">Tottenham</option>
</select>
<label for="away-team-unlisted">Équipe non listée ?</label>
<input type="text" name="away-team-unlisted" id="away-team-unlisted">
<br>
<label for="away-team-goals">Goals de l’équipe visiteuse</label>
<input type="text" id="away-team-goals" name="away-team-goals">
<br>
<input type="submit" value="Ajouter ce match">
</form>
</section>
</body>
</html>