-
Notifications
You must be signed in to change notification settings - Fork 0
/
pageInscriptionUtilisateur.html
34 lines (33 loc) · 1.21 KB
/
pageInscriptionUtilisateur.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
<html>
<head>
<title>Inscription a the Pirate Book</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<header>
<center><h1>S'inscrire</h1></center>
<nav>
<ul>
<li><a href="accueil.html">Rechercher livre</a></li>
<li><a href="auteur.html">Rechercher auteur</a></li>
<li><a href="profilUtilisateur.php">Mon profil</a></li>
<li><a href="pageIdentificationUtilisateur.html">Se connecter</a></li>
<li><a href="deco.php">Se déconnecter</a></li>
<li><a href="don.html">Faire un don</a></li>
<li><a href="pageVedettes.php">Livres en Vedette</a></li>
<ul/>
</nav>
</header>
<body>
<h1>Inscription</h1>
<div align="center">
<p>Renseignez vos informations:</p>
<form method="post" action="inscriptionUtilisateur.php">
<label>Entrez votre nom </label> <input type="text" name="nom" /></br></br>
<label>Entrez votre prenom </label> <input type="text" name="prenom" required/></br></br>
<label>Entrez votre adresse mail </label> <input type="text" name="email" required/></br></br>
<label>Entrez votre mot de passe </label> <input type="password" name="mdp" required/></br></br>
<input type="submit" value="s'inscrire"/>
</form>
</div>
</body>
</html>