1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
3
< head >
4
- < meta charset ="utf-8 " / >
4
+ < meta charset ="utf-8 " >
5
5
< title > Reservation</ title >
6
- < meta name ="viewport " content ="width=device-width,initial-scale=1 " />
7
- < link rel ="stylesheet " href ="modal.css " />
6
+ < meta name ="viewport " content ="width=device-width,initial-scale=1 " >
7
+ < link rel ="stylesheet " href ="modal.css " >
8
+ <!-- DEVELOPER OVERLAY CSS - TO BE DELETED -->
9
+ < link rel ="stylesheet " href ="devOverlayCss.css " >
8
10
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css ">
9
11
< link
10
12
href ="https://fonts.googleapis.com/css?family=DM+Sans "
11
13
rel ="stylesheet "
12
- />
14
+ >
15
+ < link rel ="icon " href ="./favicon.ico ">
13
16
</ head >
14
17
< body >
15
18
< div class ="topnav " id ="myTopnav ">
16
19
< div class ="header-logo ">
17
- < img alt ="logo " src ="Logo.png " width ="auto " height ="auto " />
18
- </ div >
19
- < div class ="main-navbar ">
20
-
21
- < a href ="# " class ="active "> < span > Accueil</ span > </ a >
22
- < a href ="# "> < span > Détails de l'évènement</ span > </ a >
23
- < a href ="# "> < span > À propos</ span > </ a >
24
- < a href ="# "> < span > Contact</ span > </ a >
25
- < a href ="# "> < span > Évènements passés</ span > </ a >
26
- < a href ="javascript:void(0); " class ="icon " onclick ="editNav() ">
27
- < i class ="fa fa-bars "> </ i >
28
- </ a >
29
- </ div >
20
+ < img alt ="logo " src ="Logo.png ">
21
+ </ div >
22
+ < div class ="main-navbar ">
23
+ < a href ="# " class ="active "> < span > Accueil</ span > </ a >
24
+ < a href ="# "> < span > Détails de l'évènement</ span > </ a >
25
+ < a href ="# "> < span > À propos</ span > </ a >
26
+ < a href ="# "> < span > Contact</ span > </ a >
27
+ < a href ="# "> < span > Évènements passés</ span > </ a >
28
+ < a href ="javascript:void(0); " class ="icon " onclick ="editNav() ">
29
+ < svg class ="burger-menu " xmlns ="http://www.w3.org/2000/svg " viewBox ="0 0 448 512 "> < path d ="M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z "/> </ svg >
30
+ </ a >
31
+ </ div >
30
32
</ div >
31
- </ div >
33
+
32
34
< main >
33
35
< div class ="hero-section ">
34
36
< div class ="hero-content ">
@@ -45,7 +47,7 @@ <h1 class="hero-headline">
45
47
</ button >
46
48
</ div >
47
49
< div class ="hero-img ">
48
- < img src ="./bg_img.jpg " alt ="img " / >
50
+ < img src ="./bg_img.jpg " alt ="img " >
49
51
</ div >
50
52
< button class ="btn-signup modal-btn ">
51
53
je m'inscris
@@ -64,48 +66,48 @@ <h1 class="hero-headline">
64
66
>
65
67
< div
66
68
class ="formData ">
67
- < label > Prénom</ label > < br >
69
+ < label for =" first " > Prénom</ label > < br >
68
70
< input
69
71
class ="text-control "
70
72
type ="text "
71
73
id ="first "
72
74
name ="first "
73
75
minlength ="2 "
74
- / >< br >
76
+ > < br >
75
77
</ div >
76
78
< div
77
79
class ="formData ">
78
- < label > Nom</ label > < br >
80
+ < label for =" last " > Nom</ label > < br >
79
81
< input
80
82
class ="text-control "
81
83
type ="text "
82
84
id ="last "
83
85
name ="last "
84
- / >< br >
86
+ > < br >
85
87
</ div >
86
88
< div
87
89
class ="formData ">
88
- < label > E-mail</ label > < br >
90
+ < label for =" email " > E-mail</ label > < br >
89
91
< input
90
92
class ="text-control "
91
93
type ="email "
92
94
id ="email "
93
95
name ="email "
94
- / >< br >
96
+ > < br >
95
97
</ div >
96
98
< div
97
99
class ="formData ">
98
- < label > Date de naissance</ label > < br >
100
+ < label for =" birthdate " > Date de naissance</ label > < br >
99
101
< input
100
102
class ="text-control "
101
103
type ="date "
102
104
id ="birthdate "
103
105
name ="birthdate "
104
- / >< br >
106
+ > < br >
105
107
</ div >
106
108
< div
107
109
class ="formData ">
108
- < label > À combien de tournois GameOn avez-vous déjà participé ?</ label > < br >
110
+ < label for =" quantity " > À combien de tournois GameOn avez-vous déjà participé ?</ label > < br >
109
111
< input type ="number " class ="text-control " id ="quantity " name ="quantity " min ="0 " max ="99 ">
110
112
</ div >
111
113
< p class ="text-label "> A quel tournoi souhaitez-vous participer cette année ?</ p >
@@ -117,7 +119,7 @@ <h1 class="hero-headline">
117
119
id ="location1 "
118
120
name ="location "
119
121
value ="New York "
120
- / >
122
+ >
121
123
< label class ="checkbox-label " for ="location1 ">
122
124
< span class ="checkbox-icon "> </ span >
123
125
New York</ label
@@ -128,7 +130,7 @@ <h1 class="hero-headline">
128
130
id ="location2 "
129
131
name ="location "
130
132
value ="San Francisco "
131
- / >
133
+ >
132
134
< label class ="checkbox-label " for ="location2 ">
133
135
< span class ="checkbox-icon "> </ span >
134
136
San Francisco</ label
@@ -139,7 +141,7 @@ <h1 class="hero-headline">
139
141
id ="location3 "
140
142
name ="location "
141
143
value ="Seattle "
142
- / >
144
+ >
143
145
< label class ="checkbox-label " for ="location3 ">
144
146
< span class ="checkbox-icon "> </ span >
145
147
Seattle</ label
@@ -150,7 +152,7 @@ <h1 class="hero-headline">
150
152
id ="location4 "
151
153
name ="location "
152
154
value ="Chicago "
153
- / >
155
+ >
154
156
< label class ="checkbox-label " for ="location4 ">
155
157
< span class ="checkbox-icon "> </ span >
156
158
Chicago</ label
@@ -161,7 +163,7 @@ <h1 class="hero-headline">
161
163
id ="location5 "
162
164
name ="location "
163
165
value ="Boston "
164
- / >
166
+ >
165
167
< label class ="checkbox-label " for ="location5 ">
166
168
< span class ="checkbox-icon "> </ span >
167
169
Boston</ label
@@ -172,7 +174,7 @@ <h1 class="hero-headline">
172
174
id ="location6 "
173
175
name ="location "
174
176
value ="Portland "
175
- / >
177
+ >
176
178
< label class ="checkbox-label " for ="location6 ">
177
179
< span class ="checkbox-icon "> </ span >
178
180
Portland</ label
@@ -186,25 +188,25 @@ <h1 class="hero-headline">
186
188
type ="checkbox "
187
189
id ="checkbox1 "
188
190
checked
189
- />
190
- < label class ="checkbox2-label " for ="checkbox1 " required >
191
+ required
192
+ >
193
+ < label class ="checkbox2-label " for ="checkbox1 ">
191
194
< span class ="checkbox-icon "> </ span >
192
195
J'ai lu et accepté les conditions d'utilisation.
193
196
</ label >
194
197
< br >
195
- < input class ="checkbox-input " type ="checkbox " id ="checkbox2 " / >
198
+ < input class ="checkbox-input " type ="checkbox " id ="checkbox2 " >
196
199
< label class ="checkbox2-label " for ="checkbox2 ">
197
200
< span class ="checkbox-icon "> </ span >
198
- Je Je souhaite être prévenu des prochains évènements.
201
+ Je souhaite être prévenu des prochains évènements.
199
202
</ label >
200
203
< br >
201
204
</ div >
202
205
< input
203
- class ="btn-submit "
206
+ class ="btn-submit button "
204
207
type ="submit "
205
- class ="button "
206
208
value ="C'est parti "
207
- / >
209
+ >
208
210
</ form >
209
211
</ div >
210
212
</ div >
0 commit comments