-
Notifications
You must be signed in to change notification settings - Fork 0
/
p8.html
74 lines (63 loc) · 2.45 KB
/
p8.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
<!DOCTYPE html>
<html>
<head>
<title> Add/Edit Product </title>
<meta charset="utf-8">
<!-- Bootstrap-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="Styles/backend_custom.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<p class="title"> <i style="font-size:100%" class="fa"></i> Add/Edit Product </p>
<form>
<div class="margin">
<label> Product Section: </label>
<select name=“console”>
<option value=“FandV”> Fruits & Vegetables </option>
<option value=“MandP”> Meat & Poultry </option>
<option value=“DandM”> Dairy & Eggs </option>
<option value="other"> Other </option>
</select>
<br />
<br />
<label> Product Name: </label>
<input type="text" name="prodName">
<br />
<br />
<label> Product #: </label>
<input type="text" name="prodNum">
<br />
<br />
<label> Quantity: </label>
<input type="text" name="qty">
<br />
<br />
<label> Product Price: $</label>
<input type="text" name="prodPrice">
<br />
<br />
<label> Price per Unit: $</label>
<input type="text" name="pricePPU">
<label> </label>
<select name=“console”>
<option value=“perKG”> /kg </option>
<option value=“perLBS”> /lbs </option>
<option value=“perML”> /100ml </option>
<option value=“perG”> /100g </option>
<option value=“perUN”> /un </option>
</select>
<br />
<br />
<p> <b> Description: </b></p>
<textarea name="prodDesc"></textarea>
</div>
<br />
</form>
<span class="b1"> <button class="btn"> Save </button> </span>
<span class="b2"><a href="p7.html" target="_self"><button class="btn"> Return to Product List </button></a>
</span>
</body>
</html>