Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeau committed Mar 18, 2021
1 parent 6044fa8 commit 25eef0e
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions starterOnly/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,49 +64,55 @@ <h1 class="hero-headline">
>
<div
class="formData">
<label>Prénom</label><br>
<label for="first">Prénom</label><br>
<input
class="text-control"
type="text"
id="first"
name="first"
minlength="2"
required="required"

/><br>
</div>
<div
class="formData">
<label>Nom</label><br>
<label for="last">Nom</label><br>
<input
class="text-control"
type="text"
id="last"
name="last"
required="required"
minlength="2"
/><br>
</div>
<div
class="formData">
<label>E-mail</label><br>
<label for="email">E-mail</label><br>
<input
class="text-control"
type="email"
id="email"
name="email"
required="required"
/><br>
</div>
<div
class="formData">
<label>Date de naissance</label><br>
<label for="birthdate">Date de naissance</label><br>
<input
class="text-control"
type="date"
id="birthdate"
name="birthdate"
required="required"
/><br>
</div>
<div
class="formData">
<label>À combien de tournois GameOn avez-vous déjà participé ?</label><br>
<input type="number" class="text-control" id="quantity" name="quantity" min="0" max="99">
<label for="quantity">À combien de tournois GameOn avez-vous déjà participé ?</label><br>
<input type="number" class="text-control" id="quantity" name="quantity" min="0" max="99" required="required">
</div>
<p class="text-label">Quelles villes ?</p>
<div
Expand All @@ -117,6 +123,9 @@ <h1 class="hero-headline">
id="location1"
name="location"
value="New York"
checked


/>
<label class="checkbox-label" for="location1">
<span class="checkbox-icon"></span>
Expand All @@ -128,6 +137,7 @@ <h1 class="hero-headline">
id="location2"
name="location"
value="San Francisco"

/>
<label class="checkbox-label" for="location2">
<span class="checkbox-icon"></span>
Expand All @@ -139,6 +149,7 @@ <h1 class="hero-headline">
id="location3"
name="location"
value="Seattle"

/>
<label class="checkbox-label" for="location3">
<span class="checkbox-icon"></span>
Expand All @@ -150,6 +161,7 @@ <h1 class="hero-headline">
id="location4"
name="location"
value="Chicago"

/>
<label class="checkbox-label" for="location4">
<span class="checkbox-icon"></span>
Expand All @@ -161,6 +173,7 @@ <h1 class="hero-headline">
id="location5"
name="location"
value="Boston"

/>
<label class="checkbox-label" for="location5">
<span class="checkbox-icon"></span>
Expand All @@ -172,6 +185,7 @@ <h1 class="hero-headline">
id="location6"
name="location"
value="Portland"

/>
<label class="checkbox-label" for="location6">
<span class="checkbox-icon"></span>
Expand All @@ -185,9 +199,10 @@ <h1 class="hero-headline">
class="checkbox-input"
type="checkbox"
id="checkbox1"
required="required"
checked
/>
<label class="checkbox2-label" for="checkbox1" required>
<label class="checkbox2-label" for="checkbox1">
<span class="checkbox-icon"></span>
J'ai lu et accepté les conditions d'utilisation.
</label>
Expand Down

0 comments on commit 25eef0e

Please sign in to comment.