-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="container-form">
<div class="inscription">
<h2>Inscription</h2>
<form action="" target="_blank" class="form-1">
<input type="text" name="nom" placeholder="Nom">
<input type="email" name="email" placeholder="Email">
<input type="password" name="mot_de_passe" placeholder="Mot de passe">
<input type="tel" name="Telephone" placeholder="Telephone">
</form>
<div class="radio-group">
<label for="genre"><input name="genre" type="radio" id="genre">Homme</label>
<label for="genre"><input name="genre" type="radio" id="genre">Femme</label>
</div>
<input type="number" name="age" placeholder="Age">
<select name="pays">
<option>Selectionnez votre pays</option>
<option>France</option>
<option value="RDC"></option>
</select>
<button class="button">S'inscrire</button>
</div>
<div class="line"></div>
<div class="connexion">
<h2>Connexion</h2>
<form action="" target="_blank">
<input type="email" placeholder="Email">
<input type="password" placeholder="Mot de passe">
<button class="button">Se connecter</button>
</form>
</div>
</div>
</div>
</body>
</html>