-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathchange table.php
More file actions
19 lines (19 loc) · 829 Bytes
/
change table.php
File metadata and controls
19 lines (19 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- Login Modal Box -->
<div class="modal fade" id="status">
<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">Select table status</h4>
</div>
<div class="modal-body">
<div class="alert alert-danger" role="alert" id="changeDenied">You don't have the privilege to do this action</div>
<p class="radioStatus">
<input type="radio" name="status" value="yellow"><label>Occupied</label><br>
<input type="radio" name="status" value="red"><label>Dirty</label>
</p>
<p class="mt10"><button class="btn btn-success" id="tabSave">Save</button></p>
</div>
</div>
</div>
</div>