forked from DanMat/Restaurant-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.php
More file actions
18 lines (18 loc) · 753 Bytes
/
confirmation.php
File metadata and controls
18 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Login Modal Box -->
<div class="modal fade" id="confirmBox">
<div class="modal-dialog w300">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">Confirmation</h4>
</div>
<div class="modal-body">
<p>Item has been added to the order<br/>Please select one of the following actions.</p>
<p class="mt10 center">
<button class="btn btn-success" data-toggle="modal" data-target="#selCategory" id="addItemAgain">Add Items</button>
<button class="btn btn-success" id="placeOrder">Place Order</button>
</p>
</div>
</div>
</div>
</div>