-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
63 lines (59 loc) · 2.72 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
<!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>Shopping Cart | My Products</title>
<!-- <link rel="icon" href="images/images (7).jpg"> -->
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<a href="index.html" class="brand">Shopping Cart</a>
<nav>
<ul id="links">
<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"></a></li>
<li><a href="favorites.html">Favorites</a></li>
<li><a href="myproducts.html">My Products</a></li>
<li class="shoppingCart" id="shoppingCart">
<i class="fas fa-shopping-cart"></i>
<span class="badge"></span>
<div class="carts-products">
<div></div>
<a href="cartProducts.html">view all products</a>
</div>
</li>
<li><a href="#" id="logout">Log Out</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="profile-page">
<div class="container">
<img alt="" src="" class="user-avatar">
<h2 id="username"></h2>
<p id="email"></p>
<p id="productLength">Product Length : <span></span></p>
<a href="editProfile.html">Edit Profile</a>
</div>
<a href="createProduct.html " class="create-product-icon">
<i class="fa fa-plus"></i>
</a>
</section>
<script src="js/user.js"></script>
<script src="js/data.js"></script>
<script src="js/cartMenue.js"></script>
<script src="js/profile.js"></script>
</body>
</html>