-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateAccount.html
43 lines (40 loc) · 2.04 KB
/
createAccount.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="loginBody">
<header class="entete" id="enteteAjouter">
<a href="./index.php"><img src="https://i.im.ge/2024/02/28/gvQxly.imagetest-Copie-2.png" alt="Nom du site web"></a>
<img src="https://i.im.ge/2024/02/28/gvQxly.imagetest-Copie-2.png" alt="Nom du site web">
</header>
<section id="modMsg">
<h1>Création du compte</h1>
</section>
<section id="resForm"></section>
<section class="positionForm">
<form class="loginForm">
<fieldset class="loginFieldset">
<label for="prenom" class="lbl prenom">Prénom</label>
<input type="text" id="prenom" name="prenom" class="input prenom">
<label for="nomFamille" class="lbl nomFamille">Nom de famille</label>
<input type="text" id="nomFamille" name="nomFamille" class="input nomFamille">
<label for="dateNaissance" class="lbl dateNaissance">Date de naissance</label>
<input type="date" id="dateNaissance" name="dateNaissance" class="input dateNaissance">
<label for="email" class="lbl email">Adresse courriel</label>
<input type="email" id="email" name="email" class="input email">
<label for="username" class="lbl User">Nom d'utilisateur</label>
<input type="text" id="username" name="username" class="input User">
<label for="password" class="lbl Mdp">Mot de passe</label>
<input type="password" id="password" name="password" class="input Mdp">
</fieldset>
<button type="button" id="createSubmit" class="loginBtn">Créer votre compte</button>
</form>
</section>
<footer class="footerParcourir"></footer>
<script src="createAccount.js"></script>
</body>
</html>