-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcart_modal.php
More file actions
26 lines (26 loc) · 1.2 KB
/
Copy pathcart_modal.php
File metadata and controls
26 lines (26 loc) · 1.2 KB
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
<!-- Remove Item from Order -->
<div class="modal fade" id="removeOrder<?php echo $row['Order_ID']; ?>" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<center>
<h4 class="modal-title" id="myModalLabel">Remove Item from Order</h4>
</center>
</div>
<div class="modal-body">
<h3 class="text-center"><?php echo $row['Menu_Name']; ?></h3>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"><span
class="glyphicon glyphicon-remove"></span> Close</button>
<a href="deleteOrder.php?order=<?php echo $row['Order_ID']; ?>" class="btn btn-danger"><span
class="glyphicon glyphicon-trash"></span> Yes</a>
</form>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>