-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.html
More file actions
37 lines (37 loc) · 1.44 KB
/
add.html
File metadata and controls
37 lines (37 loc) · 1.44 KB
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
<!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>Add Item</title>
<link rel="stylesheet" href="add.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="bar">
<a href="index.html">Home</a>
<a href="store.html">Store</a>
<a href="shoppingcart.html">Shopping Cart</a>
<a href="signin.html">Sign In</a>
</div>
<h1>Add new item</h1>
<div class="grid">
<b>Name:</b>
<input type="text" name="Item_name" id="Item_name" placeholder="Enter product name">
<b>Quantity:</b>
<input type="number" name="Item_quantity" id="Item_quantity" placeholder="Enter how many items you want to sell">
<b>Price per item:</b>
<input type="number" name="Item_Price" id="Item_Price" placeholder="Enter price per item">
<b>Color:</b>
<input type="color" name="Item_color" id="Item_color">
<b>Category:</b>
<input type="text" name="Item_Category" id="Item_Category" placeholder="Enter category">
<b>Description:</b>
<Textarea id="Item_Description" name="Item_Description" placeholder="Enter a fitting description for this item"></Textarea>
</div>
<div class="buttoncontainer">
<button id="Add_item_button">Save</button>
</div>
</body>
</html>