-
Notifications
You must be signed in to change notification settings - Fork 2
/
cart.html
83 lines (62 loc) · 2.52 KB
/
cart.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CART</title>
<link rel="stylesheet" href="/style/styles.css">
<link rel="stylesheet" href="/style/skeleton.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="notification_container">
</div>
<header id="header" class="header">
<li><a href="index.html">Acceuil</a></li>
<li><a href="produits.html">Produits</a></li>
<li><a href="login.html">LOGIN</a></li>
<li><a href="profil.html">Profil</a></li>
<li><a href="cart.html">SHOPPING CART</a></li>
<div class="container">
<div class="row">
<div class="two columns u-pull-right">
<li class="submenu">
<img src="img/cart.png" id="img-cart">
<div id="cart">
<table id="cart-table" class="u-full-width">
<thead>
<tr>
<th></th>
<th>Article</th>
<th>Prix</th>
<th>Qté</th>
<th></th>
</tr>
</thead>
<tbody id="test"></tbody>
</table>
<a href="#" id="empty-cart" class="button u-full-width">Vider le panier</a>
</div>
</div>
</div>
</div>
</header>
<form id="search-item" class="search-form">
<input type="text" placeholder="Rechercher ...">
</form>
<div id="courses-list">
<h1>NOS SNEAKERS</h1>
<div class="courses__container"></div>
<div id="no_course" class="hidden">Aucun cours n'est disponible pour votre recherche</div>
</div>
<div class="courses__container">
</div>
<footer>
</footer>
<script src="/script/courses.js"></script>
<script src="/script/appli.js"></script>
<script src="/script/search.js"></script>
</body>
</html>