-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart-step-three.php
70 lines (70 loc) · 2.65 KB
/
cart-step-three.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spark Promotions | Koszyk - Podsumowanie</title>
<link rel="shortcut icon" href="./assets/icons/favicon.jpg" type="image/x-icon">
<link rel="stylesheet" href="./scss/main.css">
</head>
<body>
<header>
<?php include "./components/nav.php"; ?>
</header>
<div id="main-wrapper">
<div class="breadcrumbs">
<ul>
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Koszyk</a>
</li>
</ul>
</div>
<div id="cart_steps_container">
<ul class="cart_steps">
<li class="cart_steps--item">
<a href="#">
<div class="item--number">
<p>1</p>
</div>
<div class="item--text">
<p>Twój Koszyk</p>
</div>
</a>
</li>
<li class="cart_steps--item">
<a href="#">
<div class="item--number">
<p>2</p>
</div>
<div class="item--text">
<p>Adres dostawy</p>
</div>
</a>
</li>
<li class="cart_steps--item active">
<a href="#">
<div class="item--number">
<p>3</p>
</div>
<div class="item--text">
<p>Podsumowanie</p>
</div>
</a>
</li>
</ul>
</div>
<?php include "./components/cart/cart_step_three_content.php"; ?>
</div>
<footer>
<?php include "./components/footer.php"; ?>
</footer>
<script src="./js/mobile_searchbar.js"></script>
<script src="./js/script.js"></script>
<script src="./js/cart/payment_method_choose.js"></script>
<script src="./js/file_upload.js"></script>
</body>
</html>