-
Notifications
You must be signed in to change notification settings - Fork 0
/
inscriptionForma.html
67 lines (47 loc) · 1.91 KB
/
inscriptionForma.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Inscription</title>
<link rel="stylesheet" href="inscription_piloteCSS.css">
</head>
<body>
<h1>
INSCRIPTION
</h1>
<div class="bandeau">
<h2>
FORMULAIRE D'INSCRIPTION
</h2>
<img src="Ressources/Medias/Image13-2.jpg" id="imageb" alt="">
</div>
<form name="inscriptionpilote" method="post" action="writeValuesFr.php">
<div id="partie1">
<label> Sexe </label> <br/>
<input type="radio" name="sexeH" value="homme"/> Homme <br/>
<input type="radio" name="sexeF" value="femme"/> Femme <br/>
<label> Civilité </label> <br/>
<input type="radio" name="civilite1" value="M."/> M.
<input type="radio" name="civilite2" value="Mlle"/> Mlle
<input type="radio" name="civilite3" value="Mme"/> Mme <br/>
<input type="reset" value="Annuler" class="boutonform"/>
<a href="#coordonnées" class="suivant"> Suivant</a>
</div>
<div id="coordonnées">
<label> Nom </label> <br/>
<input type="text" value="Exemple : Laville" size="40" maxlength="40" name="nom" class="answer"/> <br/>
<label> Prénom </label> <br/>
<input type="text" value="Exemple : Paul" size="40" maxlength="40" name="prenom" class="answer"/> <br/>
<label> Adresse mail </label> <br/>
<input type="text" value="[email protected]" size="40" maxlength="40" name="mail" class="answer"/> <br/>
<label> Mot de passe </label> <br/>
<input type="text" value="" size="40" maxlength="40" name="mdp" class="answer"/> <br/>
<label> Confirmation du mot de passe </label> <br/>
<input type="text" value="" size="40" maxlength="40" name="mdp2" class="answer"/> <br/>
<input type="reset" value="Annuler" class="boutonform"/>
<input type="submit" class="suivant" value="Valider">
</div>
</form>
<br/>
</body>
</html>