-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdon.html
33 lines (30 loc) · 952 Bytes
/
don.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
<html>
<head>
<title>Pirate Book</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<header>
<center><h1>Effectuer un don (on vous aime fort les matelots)</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>
<div align="center">
<p>Remplissez le formulaire suivant :</p>
<form method="post" action="donner.php">
<label>MontantDon(*):</label> <input type="number" name="don" min='1' required/>
<br><br>
<input type="submit" value="Donner"/>
</form>
</div>
</body>
</html>