-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 1.64 KB
/
index.html
File metadata and controls
58 lines (48 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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>Ordering</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>Add items</h1>
<div>
<ul id="validations">
</ul>
</div>
<form>
<label for="Name">Item Name:</label>
<input id="Name" type="text">
<br>
<label for="price">Price:</label>
<input id="price" type="text">
<br>
<label for="type">Product Type:</label>
<select id="type">
<option value="">please pick a product type</option>
<option value="E">E - Electronics</option>
<option value="F">F - Fruits</option>
<option value="D">D - Dairy</option>
<option value="V">V - Vegies</option>
<option value="M">M - meats</option>
<option value="T">T - toys</option>
</select>
<label for="shipping">Shiping type:</label>
<select id="shipping">
<option value="">Shipping time</option>
<option value="2">Product will take two days to ship</option>
<option value="3">Product will take three days to ship</option>
<option value="7">Product will take a week to ship</option>
</select>
<input type="checkbox" id = gift>
<label for="gift">Is gift?</label>
<br>
<input type="button" value="Add new item">
</form>
<div id="display">
</div>
<script src="js/mainv2.js"></script>
</body>
</html>