-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (54 loc) · 2.33 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link href="./src/style.css" rel="stylesheet" />
<title>MyStore Shop</title>
</head>
<body>
<header class="header">
<img class="header__logo" src="mystoredemo-logo.svg" />
</header>
<main>
<div class="checkout-form">
<h1 class="checkout-form__title">Payment options</h1>
<div class="checkout-form__adyen-checkout" id="adyen-checkout"></div>
<div class="checkout-form__skeleton hide">
<div class="checkout-form__skeleton-item"></div>
<div class="checkout-form__skeleton-item"></div>
<div class="checkout-form__skeleton-item"></div>
<div class="checkout-form__skeleton-item"></div>
</div>
</div>
<div class="checkout-divider"></div>
<div class="checkout-details">
<!-- Order Summary -->
<div class="order-summary">
<div class="order-summary__title">Order summary</div>
<img class="order-summary__item-image" src="google-nest.png" alt="Google Nest" />
<div class="order-summary__item-description-title">Description</div>
<div class="order-summary__item-description">Google Nest Mini White Duo Pack</div>
<div class="order-summary__item-description-title">Order Reference</div>
<div class="order-summary__item-description">GOOGLE_PRODUCT_1337</div>
<hr class="order-summary__separator" />
<div class="order-summary__item-payment-label">Payment total</div>
<div class="order-summary__item-amount">$ 100.00 USD</div>
</div>
<!-- Customer details -->
<div class="customer-details">
<h1 class="customer-details__title">Customer details</h1>
<div class="customer-details__info">
<div>John Doe</div>
<div>+31 06 801 567 36</div>
<div>[email protected]</div>
</div>
<div class="customer-details__shipping-title">Shipping address</div>
<div class="customer-details__info">Simon Carmiggeltstraat 6 - 50, 1011 DJ Amsterdam</div>
</div>
</div>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>