-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproduct-add.php
51 lines (45 loc) · 1.46 KB
/
product-add.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
<?php
include('header.php');
?>
<h2>Add Product</h2>
<hr>
<div id="response" class="alert alert-success" style="display:none;">
<a href="#" class="close" data-dismiss="alert">×</a>
<div class="message"></div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>Product Information</h4>
</div>
<div class="panel-body form-group form-group-sm">
<form method="post" id="add_product">
<input type="hidden" name="action" value="add_product">
<div class="row">
<div class="col-xs-4">
<input type="text" class="form-control required" name="product_name" placeholder="Enter Product Name">
</div>
<div class="col-xs-4">
<input type="text" class="form-control required" name="product_desc" placeholder="Enter Product Description">
</div>
<div class="col-xs-4">
<div class="input-group">
<span class="input-group-addon"><?php echo CURRENCY ?></span>
<input type="number" name="product_price" class="form-control required" placeholder="0.00" aria-describedby="sizing-addon1">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 margin-top btn-group">
<input type="submit" id="action_add_product" class="btn btn-success float-right" value="Add Product" data-loading-text="Adding...">
</div>
</div>
</form>
</div>
</div>
</div>
<div>
<?php
include('footer.php');
?>