-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 947 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 947 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> Formulaire d'Incription</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.CSS">
</head>
<body>
<form action="fortmulair" >
<h4>INSCRIPTION</h4>
<hr>
<div class="name field">
<div>
<label> Nom</label>
<input type="text">
</div>
<div>
<label>Prénom</label>
<input type="text">
</div>
</div>
<label>Adresse Mail</label>
<input type="email">
<label>Mot de passe</label>
<input type="password">
<input type="submit" value="S'inscrire">
<p>Vous avez déjà un compte ?<a href="#">Se Connecter</a></p>
</form>
</body>
</html>