-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
163 lines (163 loc) · 6.54 KB
/
checkout.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<title>Square Eyes | Checkout page</title>
<meta
name="description"
content="This is the chechkout page for Square Eyes where you will see a checkout option"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/styles.css" rel="stylesheet" />
<link href="css/checkout.css" rel="stylesheet" />
<link
rel="stylesheet"
href="data/font-awesome/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap"
rel="stylesheet"
/>
<script defer src="js/components/errors.js"></script>
<script defer src="js/components/store.js"></script>
<script defer src="js/checkout.js"></script>
<!-- Hotjar Tracking Code for https://lighthearted-lebkuchen-895d9c.netlify.app -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 3675917, hjsv: 6 };
a = o.getElementsByTagName("head")[0];
r = o.createElement("script");
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(
window,
document,
"https://static.hotjar.com/c/hotjar-",
".js?sv="
);
</script>
</head>
<body>
<header>
<div class="hamburger-menu">
<input type="checkbox" id="menu-checkbox" />
<label
aria-label="Hamburger menu"
for="menu-checkbox"
class="hamburger-icon"
><i class="fa fa-bars" aria-hidden="true"></i
></label>
<nav>
<a href="index.html">Home</a>
<a href="videos.html">Videos</a>
<a href="library.html">Library</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<br />
<div class="mobile">
<a href="#">Search</a>
<a href="#">Heart list</a>
<a href="#">Log in</a>
</div>
</nav>
</div>
<div class="logo">
<a href="index.html">
<img
src="images/logo.png"
alt="SquareEyes logo with an orange square/rectangle around the word square"
/>
</a>
</div>
<div class="profile">
<a href="#" class="desktop" aria-label="magnifying glass icon">
<i class="fa fa-search desktop" aria-hidden="true"></i>
</a>
<a href="#" class="desktop" aria-label="heart icon">
<i class="fa fa-heart" aria-hidden="true"></i>
</a>
<a
class="cartAmount"
href="checkout.html"
aria-label="shopping cart with item(s) icon"
>
<span class="count"></span>
<i
class="fa fa-shopping-cart cart-icon"
aria-hidden="true"
></i>
</a>
<a href="#" class="desktop"> Log in </a>
</div>
</header>
<main class="checkout-container">
<div class="dialog">
<div class="dialog-content">
<h1>Shopping cart</h1>
<p class="price">Price</p>
<div class="border"></div>
<div class="cart-items"></div>
<div class="subtotal">Subtotal (0 items) kr</div>
<form class="checkout-form">
<div>
<input
type="checkbox"
id="saved-payment"
name="saved payment"
value="saved"
/>
<label for="saved-payment">
Use the payment information saved on your
profile
</label>
</div>
<div>
<input
type="checkbox"
id="different-payment"
name="different payment"
value="different"
/>
<label class="checkbox" for="different-payment">
Use a different payment method
</label>
</div>
<a href="checkout_success.html" aria-label="Purchase"
><input type="button" value="Purchase"
/></a>
</form>
</div>
</div>
<a href="videos.html"><h2>Continue browsing</h2></a>
</main>
<footer>
<div class="footer-content">
<div class="socials">
<a href="#" aria-label="instagram logo">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="#" aria-label="twitter logo">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" aria-label="facebook logo">
<i class="fa fa-facebook-square" aria-hidden="true"></i>
</a>
</div>
<ul class="footer-nav">
<li><a href="#">User support</a></li>
<li><a href="#">Terms of use</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Cookie Settings</a></li>
</ul>
<div class="copyright">
<p>©2023 SquareEyes, Inc. All Rights Reserved</p>
</div>
</div>
</footer>
</body>
</html>