forked from nikitaGupta2106/Online-Wine-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Myorders.html
62 lines (62 loc) · 2.28 KB
/
Myorders.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Orders</title>
<script src="https://kit.fontawesome.com/b7836bba55.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./CSS/header.css"></link>
<link rel="stylesheet" href="./CSS/footer.css">
<link rel="stylesheet" href="./CSS/profile.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT Mono" />
</head>
<header id="header"></header>
<body id="body">
<div id="first">
<div id="second">
<h2>Hello, <span id="user">Annyonoms</span></h2>
<p id="points">You have 587 Points</p>
<p id="signout-btn">SIGN OUT</p>
</div>
<div id="content-orders">
<div id="left-orders">
<div id="profile">PROFILE</div>
<div id="myorders">MY ORDERS</div>
<div id="wishlist">WISH LIST</div>
<div>LOYALTY PROGRAM</div>
<div>REVIEWS</div>
</div>
<div id="right-orders">
<h2>My Orders</h2>
<div id="lookup-div">
<select name="" id="lookup">
<option id="option">Lookup</option>
<option value=""></option>
</select>
<select name="" id="lookup">
<option id="option"><span>placed in :</span> Past 3 Months</option>
<option value=""></option>
</select>
</div>
<div id="order">
<div><h2>Mar 24,2023</h2><p>Order #: 5563</p></div>
<div><h2>3200$</h2><p>3 items</p></div>
</div>
<div id="order">
<div><h2>Dec 14,2022</h2><p>Order #: 5596</p></div>
<div><h2>2100$</h2><p>2 items</p></div>
</div>
<div id="wines"></div>
<div id="btn-div">
<button id="repeatOrder">Repeat Order</button>
</div>
</div>
</div>
</div>
</div>
</body>
<footer id="footer"></footer>
<script type="module" src="./JS/profile.js" ></script>
<script type="module" src="./JS/importedHeader.js"></script>
</html>