1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
KyFlo/Assets/Pages/Autres/checkout.html

107 lines
3.7 KiB
HTML
Raw Permalink Normal View History

2019-11-20 11:09:01 +01:00
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
2019-12-04 11:57:53 +01:00
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
2019-12-15 19:59:26 +01:00
<link rel="stylesheet" type="text/css" href="../../css/css.css">
<link rel="stylesheet" type="text/css" href="../../css/resp.css">
2019-12-04 11:57:53 +01:00
</head>
2019-11-20 11:09:01 +01:00
2019-12-04 11:57:53 +01:00
<body>
2019-12-15 19:59:26 +01:00
<nav>
<a id="kyflo" class="active" href="../../../index.html">KyFlo</a>
2019-12-16 13:34:50 +01:00
<a class="raccourci" href="../../../index.html#nous">A propos</a>
<a class="raccourci" id="borL" href="../../../index.html#contact">Contact</a>
<a id="panier" href="checkout.html"><img src="../../Images/Icones/cart.png" alt><h3>Panier</h3></a>
2019-12-16 13:46:12 +01:00
<a id="go" href="search_result.html">GO</a>
2019-12-15 19:59:26 +01:00
<input type="text" placeholder="Rechercher sur tout le site...">
</nav>
2019-11-27 10:36:44 +01:00
2019-12-18 21:37:22 +01:00
<div id="dark_popup">
<div id="popup">
<a href="#"><h1>X</h1></a>
<h1>Merci pour votre achat ! Votre commande arrive bientot !</h1>
<a href="../../../index.html"><h2>Retour à l'accueil</h2></a>
</div>
<div class="title">
<h1>Votre panier :</h1>
</div>
<div class="content">
<table id="basket">
<tr id="cent">
<th>Nom Produit</th>
<th>Quantité</th>
<th>Prix</th>
</tr>
2019-12-13 17:13:30 +01:00
<tr>
2019-12-18 21:37:22 +01:00
<td>R2D2</td>
<td><input type="text" value="2"></td>
<td>500 €</td>
2019-12-13 17:13:30 +01:00
</tr>
<tr>
2019-12-18 21:37:22 +01:00
<td>Nao</td>
<td><input type="text" value="1"></td>
<td>5 000€</td>
2019-12-13 17:13:30 +01:00
</tr>
<tr>
2019-12-18 21:37:22 +01:00
<td id="total" COLSPAN=3>TOTAL : 6 000€</td>
2019-12-13 17:13:30 +01:00
</tr>
</table>
2019-12-18 21:37:22 +01:00
</div>
<div class="title">
<h1>Livraison :</h1>
</div>
<div class="content">
<div id="livraison">
<h2>Coordonnées de livraison :</h2>
<form action="#dark_popup">
<table>
<tr>
<td>Nom et prénom :<input type="text" required></td><td>Ville :<input type="text" required></td>
</tr>
<tr>
<td>Adresse ligne 1 :<input type="text" placeholder="Rue, voie, boite postale, nom de société" required></td><td>Code postal :<input type="text" required></td>
</tr>
<tr>
<td>Adresse ligne 2 :<input type="text" placeholder="Batiment, Etage, Lieu-Dit"></td><td>Numéro de téléphone :<input type="tel" required></td>
</tr>
</table>
<h2 id="valid">Valider:</h2>
<input type="submit" value="Payer">
</form>
</div>
</div>
2019-12-15 19:59:26 +01:00
</div>
<footer>
<div id="acces">
<table>
<tbody>
2019-11-27 10:36:44 +01:00
<tr>
<th>Accès rapide</th>
<th id="line"></th>
2019-11-27 10:36:44 +01:00
</tr>
<tr>
<td><a href="../../../index.html">Accueil</a></td>
<td><a href="../../../index.html#slider">Nos Promotions</a></td>
2019-11-27 10:36:44 +01:00
</tr>
<tr>
<td><a href="../../../index.html#produits">Nos Produits</a></td>
<td><a href="checkout.html">Votre panier</a></td>
2019-11-27 10:36:44 +01:00
</tr>
</tbody>
</table>
2019-11-23 15:49:48 +01:00
</div>
2019-12-13 17:13:30 +01:00
2019-12-16 09:53:37 +01:00
</footer>
2019-11-27 10:36:44 +01:00
2019-12-16 13:12:12 +01:00
</body>
2019-11-20 11:09:01 +01:00
</html>