-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
112 lines (102 loc) · 3.54 KB
/
checkout.html
File metadata and controls
112 lines (102 loc) · 3.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="/Favicon/favicon-16x16.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rainydays checkout page</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header class="checkout-header">
<div class="header">
<a href="/">
<img src="main-logo.png" id="logo" alt="Rainydays logo">
</a>
<div class="nav">
<a href="./jacktets.html">Shop</a>
<a href="./contact.html">Contact us</a>
<a href="./about-us.html">About us</a>
<a href="./checkout.html" id="menu-cart">Cart</a>
</div>
<input type="checkbox" id="hamburger-input" class="hamburger-show" >
<label id="hamburger-menu" for="hamburger-input" >
<nav id="sidebar-menu">
<h3>Menu</h3>
<ul>
<li><a href="./jacktets.html">Shop</a></li>
<li><a href="./contact.html">Contact us</a></li>
<li><a href="./about-us.html">About us</a></li>
<li><a href="./checkout.html">Cart</a></li>
</ul>
</nav>
</label>
<div class="overlay"></div>
</div>
</header>
<div id="cart-title">
<h1>Your cart</h1>
</div>
<section id="cart">
<div id="cart-products">
<!-- <div class="product">
<div>
<img src="./Images/rainydays-fleece.png" alt="Product image" class="cart-image">
</div>
<div>
<h2>Product title</h2>
<p>Product size</p>
<p>Product price</p>
<button>Remove</button>
</div>
</div> -->
</div>
<div id="empty-cart">
<h2>Your cart is empty</h2>
<a href="./jacktets.html">Shop here</a>
</div>
<div id="cart-checkout">
<h3>Order Summary</h3>
<p id="subtotal">Subtotal:</p>
<p id="sales">Sales:</p>
<p id="shipping">Shipping: Free</p>
<h3 id="total">Total: </h3>
<form>
<button id="checkout-button" formaction="./checkout-complete.html" >Checkout</button>
</form>
</div>
</section>
<footer class="footer-rainydays">
<img src="/main-logo.png" alt="Main Logo for Rainyday">
<div>
<h5>Support</h5>
<a href="#">Contact us</a>
<br>
<a href="#">FAQ</a>
<br>
<a href="#">Returns</a>
<br>
<a href="#">Shipping</a>
<br>
<a href="#">Payment</a>
</div>
<div>
<h5>Rainydays</h5>
<a href="#">About us</a>
<br>
<a href="#">Career</a>
<br>
<a href="#">Locate us</a>
</div>
<div>
<h5>Policies</h5>
<a href="#">Privacy policy</a>
<br>
<a href="#">Cookies</a>
<br>
<a href="#">Integrity policy</a>
</div>
</footer>
<script src="./js/checkout.js" type="module"></script>
</body>
</html>