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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>#VARIABLE(nomsite)</title>
<script src='js/jquery.js' type='text/javascript'></script>
<script src='js/panier.js' type='text/javascript'></script>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body <?php
if ($_GET["reload"] == "1") {
echo 'bravo';
}
?>>
<div id="wrapper">
<div id="subwrapper">
#INCLURE "entete.html"
<div id="chemin">Vous êtes ici :<a href="index.php">Accueil boutique</a> / Récapitulatif de ma commande</div>
#INCLURE"menu.html"
<div id="contenu">
<div id="etapesDeCommande">
<ul>
<li><span>1</span>Panier</li>
<li><span>2</span>Facturation et livraison</li>
<li class="selection"><span class="chiffreSelection">3</span>Je vérifie ma commande</li>
<li><span>4</span>Paiement sécurisé</li>
</ul>
</div>
<h2>Récapitulatif de ma commande </h2>
<form action="commande.php?action=codepromo&code=#CLIENT_EMAIL" name="formulaire" id="formulaire">
<input type="hidden" name="action" value="codepromo" />
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<th colspan="2">Nom de l'article</th>
<th align="center">Prix unitaire </th>
<th align="center">Quantité</th>
<th align="center">Total</th>
</tr>
<THELIA_panier type="PANIER">
<tr>
<td class="ligne">
<THELIA_IMAGE type="IMAGE" num="1" produit="#ID" largeur="80">
<img src="#IMAGE" alt="#PRODTITRE" title="#PRODTITRE"/>
</THELIA_IMAGE>
</td>
<td class="ligne">#TITRE - #REF</td>
<td align="center" class="ligne">#PRIXU €</td>
<td align="center" class="ligne">#QUANTITE</td>
<td align="center" class="ligne">#TOTAL €</td>
</tr>
</THELIA_panier>
<tr>
<th colspan="4">Frais de livraison </th>
<th align="center">#PANIER_PORT €</th>
</tr>
<tr>
<td colspan="4">Remise-avoir </td>
<td align="center">#PANIER_REMISE €</td>
</tr>
<tr>
<th colspan="5">
<p class="derniereLigne"><label class="codeDeReduction">Saisissez un code de réduction</label>
<input name="code" id="code" type="text" value="#CLIENT_EMAIL" class="codeDeReduction"/>
<button type="submit" class="boutonMemeLigneQuInput"><span><span>OK</span></span></button>
</p>
</th>
</tr>
<tr>
<th colspan="4">TOTAL</th>
<th align="center" class="total">#PANIER_TOTPORT €</th>
</tr>
</table>
</form>
<div class="adresseDeLivraisonRecap">
<h3>Mon adresse de livraison</h3>
<div class="contenu">
<THELIA_adrcours type="ADRESSE" adresse="#ADRESSE_ACTIVE">
#RAISON #PRENOM #NOM <br />
#ADRESSE1 #ADRESSE2 #ADRESSE3<br />
#CPOSTAL #VILLE<br/>
<THELIA_pays type="PAYS" id="#PAYS">
#TITRE
</THELIA_pays>
</THELIA_adrcours>
</div>
<a href="#URLPREC" class="modifierOuAjouter">Modifier cette adresse</a>
</div>
</div>
<div id="contenu">
<h2>Choisissez un mode de paiement : </h2>
<div class="choixDuReglement">
<ul>
<THELIA_PAIEMENT type="PAIEMENT">
<li><a href="virement.php"><span class="modeDeReglement">#TITRE</span><span class="choisir">Je choisis ce mode de paiement</span></a></li>
</THELIA_PAIEMENT>
</ul>
</div>
</div>
#INCLURE "pied.html"
#INCLURE "signature.html"
</div>
</div>
</body>
</html> |