This repository has been archived by the owner on May 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panier_empty.html
65 lines (65 loc) · 2.17 KB
/
panier_empty.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Adopte un cactus</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:200" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
</head>
<body>
<a href="index.html">
<header></header>
</a>
<nav id = "navbar">
<p class="menuItem"><a href="index.html#navbar">Accueil</a></p>
<p class="menuItem"><a href="produits.html#navbar">Nos Produits</a></p>
<p class="menuItem"><a href="panier_empty.html#navbar">Mon panier</a></p>
<p class="menuItem"><a href="equipe.html#navbar">L'équipe</a></p>
<form class="menuItem" action ="resultats.html#navbar" method="GET">
<input name ="recherche" type="search" placeholder="Rechercher"/>
<input name="chercher" type ="submit" value="OK"/>
</form>
</nav>
<main class ="panier vide">
<h1>Mon panier</h1>
<table>
<tr>
<th>Produit</th>
<th>Quantité</th>
<th>Prix</th>
</tr>
<tr>
<th colspan=3>Aucun article dans le panier</th>
</tr>
<tr>
<td colspan = 2>Frais de port</td>
<td>/</td>
</tr>
<tr>
<td colspan = 2>Total</td>
<td>/</td>
</tr>
</table>
<!-- formulaire coordonnées -->
<form id='coord' action ='panier_empty.html#navbar' method='POST'>
<fieldset>
<legend>Vos informations de commande</legend>
<input name='prenom' placeholder='Prénom' type ='text' /><br/>
<input name='nom' placeholder='Nom' type ='text'/><br/>
<input name='email' placeholder='Email' type ='email'/><br/>
<input name='adresse' placeholder='Adresse' type ='text'/><br/>
<input name='code_postal' placeholder='Code Postal' type ='number'/><br/>
<input name='ville' placeholder='Ville' type ='text'/><br/>
<input name='pays' placeholder='Pays' type ='text'/><br/><!-- liste déroulante ? -->
<input name='teléphone' placeholder='Téléphone' type ='tel'/><br/>
</fieldset>
<input name='envoyer' type ='submit' value='Valider la commande'/>
<!-- Commande validée -->
</form>
</main>
<footer>
<p><a href="compte_rendu.html">Compte Rendu</a></p>
</footer>
</body>
</html>