-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout-complete.html
More file actions
89 lines (81 loc) · 2.85 KB
/
checkout-complete.html
File metadata and controls
89 lines (81 loc) · 2.85 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
<!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 complete</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="checkout-complete">
<h1>Checkout complete</h1>
<h2>Thanks for your order!</h2>
<h3>Summary: </h3>
<ul id="product-summary-list">
</ul>
<h4 id="total">Total: </h4>
<p>We sent you an order confirmation at loremipsum@email.com. <br>
You will recieve an confirmation email with shipment information soon.
</p>
</div>
<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/confirmation.js" type="module"></script>
</body>
</html>