This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.php
166 lines (101 loc) · 2.89 KB
/
cart.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
<?php
require($_SERVER['DOCUMENT_ROOT'] . "/athome/product/link.php");
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ATHome - Panier</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="icon" type="image/png" href="res/icons/logo.ico" />
<script type="text/javascript" src="res/vendors/jquery.min.js"></script>
</head>
<body class="page-cart">
<?php include('res/parts/nav.php'); ?>
<div class="slider">
<div class="overlay">
<div class="inner">
<h2 class="slogan"> L'ergonomie à porté de main </h2>
<?php
$command = new Button('Commander','checkout.php');
echo ($command->getOutput());
?>
</div>
</div>
</div>
<main class="block-main">
<div class="inner">
<h1 class="total-price">275<span>€</span></h1>
<div class="cart-items-list">
<div class="cart-item">
<div class="inner">
<div class="price">
<h1>67€</h1>
</div>
<div class="separator"></div>
<div class="preview">
</div>
<div class="text">
<h2>Table basse Gauthier 588F5</h2>
<p>Lorem ipsum dolor sit amet</p>
</div>
<div class="services">
<div class="item">
<img src="res/icons/ic_monetization_on_white_24px.svg"/>
</div>
<div class="item">
<img src="res/icons/ic_pin_drop_white_24px.svg"/>
</div>
<div class="item">
<img src="res/icons/ic_local_florist_white_24px.svg"/>
</div>
<div class="item">
<img src="res/icons/ic_directions_car_white_24px.svg"/>
</div>
</div>
<div class="amount">
<p>Quantité : 2</p>
</div>
<div class="close">
<img src="res/icons/ic_clear_black_24px.svg"/>
</div>
</div>
</div>
<div class="cart-item">
<div class="inner">
<div class="price">
<h1>70€</h1>
</div>
<div class="separator"></div>
<div class="preview">
</div>
<div class="text">
<h2>Fauteuil Gauthier 588F5</h2>
<p>Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet</p>
</div>
<div class="services">
<div class="item">
<img src="res/icons/ic_monetization_on_white_24px.svg"/>
</div>
<div class="item">
<img src="res/icons/ic_directions_car_white_24px.svg"/>
</div>
</div>
<div class="amount">
<p>Quantité : 2</p>
</div>
<div class="close">
<img src="res/icons/ic_clear_black_24px.svg"/>
</div>
</div>
</div>
</div>
<div class="command">
<?php echo ($command->getOutput()); ?>
</div>
</div>
</main>
<?php include('res/parts/footer.php'); ?>
<script type="text/javascript" src="script/script.js"></script>
</body>
</html>