-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp7_backstore.php
82 lines (67 loc) · 2.76 KB
/
p7_backstore.php
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
78
79
80
81
82
<?php include('./assets/php/header.php'); ?>
<div class="backstore-navigation-buttons">
<a href="p7_backstore.php">
<div class="btn">
<label for="manageproducts">Manage products</label>
<input type="button" id="manageproducts" name="manageproducts">
</div>
</a>
<a href="p9_backstoreusers.php">
<div class="btn">
<label for="manageusers">Manage users</label>
<input type="button" id="manageusers" name="manageusers">
</div>
</a>
<a href="p11_backstoreorders.php">
<div class="btn">
<label for="manageorders">Manage orders</label>
<input type="button" id="manageorders" name="manageorders">
</div>
</a>
</div>
<div>
<h1 class="bs-header"></br>Product Inventory
<form action="" class="backstore-forms" id="productBox">
<p>
<input class="bs-checkbox" type="checkbox" name="products[]" value="apple" id="product" onclick="backstoreStyling()" />
<label class="bs-form-text"> Apple </label>
</p>
</form>
<form action="" class="backstore-forms" id="productBox">
<p>
<input class="bs-checkbox" type="checkbox" name="products[]" value="Banana" id="product" onclick="backstoreStyling()" />
<label class="bs-form-text"> Banana </label>
</p>
</form>
<form action="" class="backstore-forms" id="productBox">
<p>
<input class="bs-checkbox" type="checkbox" name="products[]" value="Cucumber" id="product" onclick="backstoreStyling()" />
<label class="bs-form-text"> Cucumber </label>
</p>
</form>
</h1>
</div>
<div class="backstore-editing-buttons">
<a href="p8_addproduct.php">
<div class="btn">
<label for="additm">Add product</label>
<input type="button" id="additm" name="additm">
</div>
</a>
<div class="btn">
<label for="deleteitm">Delete product</label>
<input type="button" id="deleteitm" name="deleteitm">
</div>
<a href="p8_editproduct.php">
<div class="btn">
<label for="edititm">Edit product</label>
<input type="button" id="edititm" name="edititm">
</div>
</a>
</div>
<!---- Footer --->
<div id="footer"></div>
<!-End Of Footer->
<script src="js/script.js"></script>
</body>
</html>