-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-list.php
51 lines (42 loc) · 1.33 KB
/
product-list.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');
include('functions.php');
?>
<h1>Product List</h1>
<hr>
<div class="row">
<div class="col-xs-12">
<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="panel panel-default">
<div class="panel-heading">
<h4>Product Information</h4>
</div>
<div class="panel-body form-group form-group-sm">
<?php getProducts(); ?>
</div>
</div>
</div>
<div>
<div id="confirm" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Delete product</h4>
</div>
<div class="modal-body">
<p>Are you sure you want to delete this product?</p>
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal" class="btn btn-primary" id="delete">Delete</button>
<button type="button" data-dismiss="modal" class="btn">Cancel</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<?php
include('footer.php');
?>