-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckout.html
61 lines (53 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cult.fit - health food | fitness | meditation</title>
<link rel="stylesheet" href="styles/navbar.css">
<link rel="stylesheet" href="styles/checkout.css">
</head>
<body>
<!-- Navbar -->
<div id="navbar">
</div>
<!-- Data div -->
<h2>Checkout</h2>
<div id="userInfo">
<h3>Delivery Address</h3>
<form>
<div id="flex">
<label id="fName">First Name</label>
<input type="text">
<label id="lName">Last Name</label>
<input type="text">
</div>
<label>Full Name for Delivery Address</label>
<input type="text">
<label id="address">Address Line 1</label>
<input type="text">
<label>Address Line 2 (optional)</label>
<input type="text">
<div id="flex">
<label id="city">City</label>
<input id="smallLabel" type="text">
<label>State</label>
<input id="smallLabel" type="text">
<label>Zip</label>
<input class="zipCode" id="smallLabel" type="text">
</div>
<label>Phone</label>
<input type="text">
<label>Email (We require your email to send you receipts and order updates)</label>
<input id="email" type="email">
<div id="flex">
<p>Today's Total</p>
<p class="sumTotalJs"></p>
</div>
<input type="submit" id="nextBtn" value="Next"></input>
</form>
</div>
</body>
<script type="module" src="scripts/checkout.js"></script>
</html>