-
Notifications
You must be signed in to change notification settings - Fork 4
/
account.html
54 lines (45 loc) · 1.38 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
49
50
51
52
53
54
<!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" />
<link rel="stylesheet" href="" />
<title>Document</title>
<link rel="stylesheet" href="style/account.css">
<link rel="stylesheet" href="style/createaccount.css">
<link rel="stylesheet" href="style/nav.css">
</head>
<body>
<header id="head">
</header>
<div id="Top_section">
<h1>MY ACCOUNT</h1>
<button id="log_out">LOG OUT</button>
<div id="acc_info">
<div id="order_info">
<h2>ORDER HISTORY</h2>
<p>You haven't placed any orders yet.</p>
</div>
<div id="user_info">
<h3>ACCOUNT DETAILS</h3>
<p id="user_name"></p>
<a href="address.html" style="font-size:15px;text-decoration: none; color: black;">
<div id="address">
<p >Add Address</p>
</div>
</a>
<div id="div"></div>
</div>
</div>
</div>
<hr>
<!-- last three -->
<div id="lasthree">
</div>
<!-- footer -->
<footer id="foot">
</footer>
</body>
</html>
<script src="scripts/account.js" type="module"></script>