-
Notifications
You must be signed in to change notification settings - Fork 0
/
order-status.html
66 lines (52 loc) · 2.33 KB
/
order-status.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
<!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>order-status</title>
<link rel="stylesheet" href="./styles/order-status.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="./styles/login.css">
<link rel="stylesheet" href="./styles/footer.css">
</head>
<body id="body">
<div id="navbar"></div>
<!--Add the nav bar and import in order.js file and make type as module-->
<div id="home"><a href="./index.html">HOME</a> / ORDER STATUS </div>
<div id="order">
<div class="notification">
<h4>My Bath & Body Works Rewards is now available nationwide! Join the VIPs</h4>
</div>
<div><img id="order_logo" src="https://cdn-fsly.yottaa.net/5d669b394f1bbf7cb77826ae/www.bathandbodyworks.com/v~4b.219/on/demandware.static/-/Sites-BathAndBodyWorks-Library/default/dw290ae529/images/banners/order-status-banner-asset_d.svg?yocs=s_" alt="sign_up">
</div>
<div id="forms">
<div id="order-form">
<form>
<h1>Order Tracking</h1>
<hr>
<label >Order Number</label>
<input type="text" id="order_number" placeholder="Order Number" />
<label >Order Email</label>
<input type="text" id="email" placeholder="Email" />
<label >Billing ZIP Code</label>
<input type="text" id="zipcode" placeholder="ZIP Code" />
</form>
<button id="order_dekho">CHECK STATUS</button>
<hr>
</div>
</div>
<div id="span_div">
<span> Or</span><br />
<span>Sign In to see your order history</span><br />
<span>After your order ships, tracking information may take 48 hours to appear. But don't worry! It's on the way.</span>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module" src="./scripts/order-status.js"></script>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<script type="module" src="./scripts/index.js"></script>
<script type="module" src="./scripts/login.js"></script>