-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
69 lines (61 loc) · 2.86 KB
/
profile.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
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="shop online , easy delivery to your home">
<meta name="keywords" content="HTML, CSS, JavaScript , OOP">
<meta name="author" content="Abdullah">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Shopping Cart</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/all.css">
<link rel="stylesheet" href="CSS/fontawesome.css">
<link rel="stylesheet" href="CSS/global.css">
<link rel="stylesheet" href="CSS/profile.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<a href="index.html" class="brand">
Shopping Cart
</a>
<nav>
<ul id="log_reg">
<li><a href="login.html"> Sign In</a></li>
<li><a href="register.html"> Sign Up</a></li>
</ul>
<ul id="user_info">
<li><a href="profile.html" id="user">username</a></li>
<li><a href="favouriteproducts.html">Favourites</a></li>
<li class="notify">
<i class=" shop-i fas fa-cart-plus"></i>
<span class="badge"> 0 </span>
<div class="cartmenu">
<div class="cartproducts"></div>
<a class="cartbtn" href="cartproducts.html">view all cart products</a>
</div>
</li>
<li><a href="#" id="logout">log Out</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="home">
<div class="container">
<div class="avatar-container"></div>
<h2 id="userName" class="personal-data"></h2>
<p id="userEmail" class="personal-data"></p>
<p id="personalproducts" class="personal-data"></p>
<button type="button" id="editprofile" class='edit-product personal-data'> Edit Profile </button>
</div>
</section>
<script src="JS/check_user.js"></script>
<script src="JS/products.js"></script>
<script src="JS/cartmenu.js"></script>
<script src="JS/profile.js"></script>
</body>
</html>