-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
72 lines (67 loc) · 1.84 KB
/
index3.html
File metadata and controls
72 lines (67 loc) · 1.84 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Encode+Sans" rel="stylesheet">
<link href="style3.css" rel="stylesheet">
</head>
<body>
<header>
<ul class="menu">
<li>menu
<ul class="sous-menu">
<li><a href="index.html"> Accueil</a> </li>
<li><a href="index3.html">Découvrir ma moitié</a> </li>
<li><a href="index2.html">Témoignage</a> </li>
</ul>
</li>
</ul>
<h1 class="title"><span>INSCRIPTION</span></h1>
</header>
<form name="mon-formulaire1" action="page-envoi.html" method="get">
<p>
<input type="radio" name="civi" value="Mme" /> Madame
<input type="radio" name="civi" value="Mlle" /> Monsieur
<input type="radio" name="civi" value="Mr" /> Non-binaire
</p>
<p>
Votre nom d'utilisateur :<br />
<input type="text" name="prenom" />
</p>
<p>
Votre prénom :<br />
<input type="text" name="prenom" />
</p>
<p>
Votre nom :<br />
<input type="text" name="nom" />
</p>
<p>
Votre mot de passe :<br />
<input type="password" name="passe" value="" />
</p>
<p>
Vous recherchez<br />
<select name="profil">
<option >Un homme</option>
<option >Une femme</option>
<option > Les deux</option>
</select>
</p>
<p>
Quel type de prestation recherchez vous ?<br />
<input type="checkbox" name="interet" /> Rechercher le grand amour
<input type="checkbox" name="interet" /> Rechercher l'amour d'un soir
</p>
<p>
Décrivez votre singulière personne :<br />
<textarea name="le-message" rows="6" cols="40">Vous pouvez saisir ici un message.</textarea>
</p>
<input type="checkbox" name="conditions" /> J'accepte les conditions.
<a href="index4.html" > Voir condition </a>
<p>
<input type="submit" />
<input type="reset" value="Annuler" />
</p>
</form>
</body>