-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanier.php
155 lines (151 loc) · 6.16 KB
/
panier.php
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<?php include('head.php'); ?>
</head>
<body>
<?php include('barresup.php'); ?>
<?php include('navbar.php'); ?>
<br>
<div class="container-fluid">
<div class="card table-responsive">
<table class="table table-hover shopping-cart-wrap">
<h2>Votre panier</h2>
<thead class="text-muted">
<tr>
<th scope="col" width="320">Produit</th>
<th scope="col">Image</th>
<th scope="col">Quantité"</th>
<th scope="col" width="220">Prix</th>
<th scope="col" class="text-right">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<figure class="media">
<figcaption class="media-body">
<h6 class="title text-truncate">Nom du produit</h6>
<dl class="dlist-inline small">
<dt>Taille : </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Couleur: </dt>
<dd>Orange</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<div class="img-wrap"><img src="images/p-3.jpg" class="img-thumbnail img-sm"></div>
</td>
<td>
<input type="number" class="form-control" value="1">
</td>
<td>
<div class="price-wrap">
<var class="price">15 000 FCFA</var>
<small class="text-muted">(15 000 FCFA l'unité)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<button class="btn btn-success" data-toggle="tooltip" data-original-title="Ajouter à la liste de souhaits"> <i class="fa fa-heart"></i></button>
<button class="btn btn-danger"> <i class="fa fa-trash"></i> Retirer</button>
</td>
</tr>
<tr>
<td>
<figure class="media">
<figcaption class="media-body">
<h6 class="title text-truncate">Nom du produit </h6>
<dl class="dlist-inline small">
<dt>Taille : </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Couleur: </dt>
<dd>Orange</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<div class="img-wrap"><img src="images/3-sneak.jpg" class="img-thumbnail img-sm"></div>
</td>
<td>
<input type="number" class="form-control" value="1">
</td>
<td>
<div class="price-wrap">
<var class="price">15 000 FCFA</var>
<small class="text-muted">(15 000 FCFA l'unité)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<button class="btn btn-success" data-toggle="tooltip" data-original-title="Ajouter à la liste de souhaits"> <i class="fa fa-heart"></i></button>
<button class="btn btn-danger"><i class="fa fa-trash"></i> Retirer</button>
</td>
</tr>
<tr>
<td>
<figure class="media">
<figcaption class="media-body">
<h6 class="title text-truncate">Nom du produit </h6>
<dl class="dlist-inline small">
<dt>Taille : </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Couleur: </dt>
<dd>Orange</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<div class="img-wrap"><img src="images/3-shoe.jpg" class="img-thumbnail img-sm"></div>
</td>
<td>
<input type="number" class="form-control" value="1">
</td>
<td>
<div class="price-wrap">
<var class="price">15 000 FCFA</var>
<small class="text-muted">(15 000 FCFA l'unité)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<button class="btn btn-success" data-toggle="tooltip" data-original-title="Ajouter à la liste de souhaits"> <i class="fa fa-heart"></i></button>
<button class="btn btn-danger"> <i class="fa fa-trash"></i> Retirer</button>
</td>
</tr>
<tr>
<td colspan="3">Code Promo : <input type="text" name=""><button class="btn btn-success"> Soumettre </button></td>
<td>
<figure class="media">
<figcaption class="media-body">
<h5 class="title text-truncate"><b> Reduction : 2000 FCFA </b></h5>
<dl class="dlist-inline large">
<dt>Livraison : </dt>
<dd>5 000 FCFA</dd>
</dl>
<dl class="dlist-inline large">
<dt>Total : </dt>
<dd>48 000 FCFA</dd>
</dl>
</figcaption>
</figure>
</td>
<td class="text-right">
<a class="btn btn-success" href="checkout.php"><i class="fa fa-thumbs-up"></i> Paiement </a>
</td>
</tr>
</tbody>
</table>
</div> <!-- card.// -->
</div>
<?php include('footer.php'); ?>
<?php include('script.php'); ?>
</body>
</html>