-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp8_addproduct.php
48 lines (39 loc) · 1.4 KB
/
p8_addproduct.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
<?php include('./assets/php/header.php'); ?>
</div>
<div>
<h1 class="bs-header"></br>Add a product
<form action="" class="bs-add">
<p>
<label class="bs-add"> Product Name: </label>
<input class="data-entering" type="text" name="itemdata[]" value="" id="name" />
</p>
</form>
<form action="" class="bs-add">
<p>
<label class="bs-add"> Product quantity: </label>
<input class="data-entering" type="text" name="itemdata[]" value="" id="quantity" />
</p>
</form>
</h1>
</div>
<!-- Temporary buttons just loop back to the previous page-->
<div class="backstore-editing-buttons">
<a href="p7_backstore.php">
<div class="btn">
<label for="saveitm">Save</label>
<input type="button" id="saveitm" name="saveitm">
</div>
</a>
<a href="p7_backstore.php">
<div class="btn">
<label for="cancel">Cancel</label>
<input type="button" id="cancel" name="cancel">
</div>
</a>
</div>
<!---- Footer --->
<div id="footer"></div>
<!-End Of Footer->
<script src="js/script.js"></script>
</body>
</html>