-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
29 lines (29 loc) · 1010 Bytes
/
admin.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="public/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="public/css/style.css" rel="stylesheet" type="text/css">
<script src="public/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="public/bootstrap/dist/js/bootstrap.min.js"></script>
</head>
<body class="admin">
<div class="row">
<center><h3>ADMINISTRATOR</h3></center>
<div class="col-md-12">
<dl>
<dt><h4>User</h4></dt>
<dd><h5>Manage user accounts and booking</h5></dd>
<dt><h4>Employee</h4></dt>
<dd><h5>Manage employees account and activities</h5></dd>
<dt><h4>Service center</h4></dt>
<dd><h5>Manage service center account and activities</h5></dd>
<dt><h4>Control</h4></dt>
<dd><h5>Control overall workflow of the system</h5></dd>
</dl>
</div>
</div>
</body>
</html>