-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaccount.html
48 lines (46 loc) · 1.51 KB
/
account.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
<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>Lovoda</title>
<link
rel="shortcut icon"
href="https://cdn.shopify.com/s/files/1/0627/7388/7215/files/Favicon_32x32.jpg?v=1650456214"
type="image/x-icon"
/>
<!-- custom css -->
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/account.css" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div id="navbar"></div>
<div id="container">
<div id="top-sec">
<h1 id="name-display"></h1>
<div id="logout">
<i class="fa fa-user-o" aria-hidden="true"></i>
<p>Log out</p>
</div>
</div>
<!-- <h1 id="side-title">Your Orders</h1> -->
<div id="below-table">
<hr class="hr-bar" />
<div id="products-list"></div>
<hr class="hr-bar" />
<div id="sub-total-price"></div>
</div>
</div>
<div id="footer"></div>
</body>
<script src="./scripts/account.js" type="module"></script>
</html>