-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathViewAddedMenu.php
32 lines (32 loc) · 1.1 KB
/
ViewAddedMenu.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
<?php
include "app/header.php";
include "app/nav.php";
?>
<div class="header">
<h4 class="text-center">Added Menus</h4>
</div>
<div class="ui container">
<div id="tablePopulate">
<a href="default.php" class="btn btn-default"><span class="glyphicon glyphicon-circle-arrow-left"></span> Go Back - Home Page</a><br><br>
<table class="table table-bordered" id="table">
<thead>
<tr class="info">
<th>Name:</th>
<th>Qty:</th>
<th>Price:</th>
<th colspan="2" class="text-center">Operations</th>
</tr>
</thead>
<tbody id="tBody">
<tr id="visibility" class="warning">
<td colspan="5" class="text-center">
Retrieving records...
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="view-added-menus-app.js"></script>
<?php
include "app/footer.php";