This commit is contained in:
2024-05-06 10:28:43 +02:00
parent ad0030c065
commit 2b59dee034
2 changed files with 9 additions and 5 deletions

View File

@@ -23,15 +23,19 @@
<input name="prenom" placeholder="prénom" type="text">
</label>
<!-- Multiple Radios -->
<label class="control-label" for="radios">Sexe</label>
<label class="control-label" for="radios">Genre</label>
<label>
<input name="sexe" value="Homme" checked="checked" type="radio">
<input name="genre" value="Homme" checked="checked" type="radio">
Homme
</label>
<label >
<input name="sexe" value="Femme" type="radio">
<input name="genre" value="Femme" type="radio">
Femme
</label>
<label >
<input name="genre" value="NonBinaire" type="radio">
Non Binaire
</label>
<!-- Button -->
<button type="submit">Envoyer</button>
</fieldset>