-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
39 lines (38 loc) · 1.55 KB
/
signup.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login.css">
<title>Page d'inscription</title>
</head>
<body>
<div class="login-box">
<div class="signup">
<header>Inscription</header> <!-- En-tête de la section d'inscription -->
</div>
<form action="sign.php" method="post">
<div class="input-box">
<input type="text" class="input-field" name="Nom" placeholder="Nom" autocomplete="off" required>
</div>
<div class="input-box">
<input type="text" class="input-field" name="Prenom" placeholder="Prénom" autocomplete="off" required>
</div>
<div class="input-box">
<input type="text" class="input-field" name="email" placeholder="Email" autocomplete="off" required>
</div>
<div class="input-box">
<input type="password" class="input-field" name="Mdp" placeholder="Mot de passe" autocomplete="off" required>
</div>
<div class="input-submit">
<button class="submit-btn" id="submit"></button>
<label for="submit">S'inscrire</label> <!-- Étiquette pour le bouton d'inscription -->
</div>
</form>
<div class="sign-up-link">
<p>Déjà un compte ? Connectez-vous <a href="login.html">ici</a></p> <!-- Lien vers la page de connexion -->
</div>
</div>
</body>
</html>