forked from hieu2505/restaurant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployee_menu.php
More file actions
31 lines (30 loc) · 1.11 KB
/
Copy pathemployee_menu.php
File metadata and controls
31 lines (30 loc) · 1.11 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
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Quản lý</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="../css/admin_style.css" >
<script src="../resources/ckeditor/ckeditor.js"></script>
</head>
<body>
<?php
session_start();
include '../connect_db.php';
?>
<div id="content-wrapper">
<div class="container">
<div class="left-menu">
<div class="menu-heading">Employees Menu</div>
<div class="menu-items">
<ul>
<li><a href="../menu.php">Menu</a></li>
<li><a href="./listTable.php">Quản lý đặt bàn</a></li>
<li><a href="order_listing.php">Quản lý hóa đơn</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>