-
Notifications
You must be signed in to change notification settings - Fork 0
/
check-out.html
111 lines (109 loc) · 3.03 KB
/
check-out.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lollyland Express Checkout</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body class="container-fluid">
<header>
<div class="header">
<a href="index.html">
<img
class="header-logo"
src="lollyland-img/Lolly-land-express-candy-transparens.png"
alt="logo-img"
/>
</a>
</div>
</header>
<div class="hero-checkout">
<h2 class="title-h2">Checkout</h2>
</div>
<form class="checkout-el">
<div id="checkoutContainer"></div>
<div id="sumTotalContainer"></div>
<div class="form-group">
<label for="input-firstName">* First name</label>
<input
type="text"
class="form-control"
id="input-firstName"
aria-describedby="input-firstName"
placeholder="Enter name"
/>
</div>
<div class="form-group">
<label for="input-lastName">* Last name</label>
<input
type="text"
class="form-control"
id="input-lastName"
aria-describedby="input-lastName"
placeholder="Enter name"
/>
</div>
<div class="form-group">
<label for="input-address">* Address</label>
<input
type="text"
class="form-control"
id="input-address"
placeholder="Enter address"
/>
</div>
<div class="form-group">
<label for="input-zipcode">* ZIP-code</label>
<input
type="number"
class="form-control"
id="input-zipcode"
placeholder="Enter ZIP-code"
/>
</div>
<div class="form-group">
<label for="input-city">* City</label>
<input
type="text"
class="form-control"
id="input-city"
placeholder="Enter city"
/>
</div>
<div class="form-group">
<label for="input-phonenumber">Phone number</label>
<input
type="number"
class="form-control"
id="input-phonenumber"
placeholder="Enter phone number"
/>
</div>
<div class="form-group">
<label for="input-email">* Email</label>
<input
type="text"
class="form-control"
id="input-email"
placeholder="Enter email"
/>
</div>
<button type="submit" id="submit-order" class="btn btn-success">
Place order
</button>
</form>
<footer>
<div class="footer">
<p>© 2023 Lollyland Express</p>
</div>
</footer>
<script type="module" src="/src/checkout.ts"></script>
</body>
</html>