-
Notifications
You must be signed in to change notification settings - Fork 0
/
createProduct.html
77 lines (69 loc) · 2.51 KB
/
createProduct.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
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<title>Shopping Cart | Create Product Page</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/createProduct.css" />
<link rel="stylesheet" href="css/style-rtl.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="favroites.html"> Favorites </a></li>
<li><a href="myproducts.html"> My Products </a></li>
<li class="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"> Logout</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="create-product-page">
<div class="container">
<form id="create-form">
<input type="file" id="upload-image-file" />
<input type="text" placeholder="Name ..." id="product-name" />
<input type="text" placeholder="Description ..." id="product-desc" />
<select name="" id="product-size">
<option value="" hidden>select size</option>
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
</select>
<input type="submit" value="Create" />
</form>
</div>
</section>
<script src="js/user.js"></script>
<script src="js/data.js"></script>
<!-- <script src="js/langDir.js"></script> -->
<script src="js/cartMenu.js"></script>
<script src="js/createProduct.js"></script>
</body>
</html>