-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenubar.php
47 lines (38 loc) · 1.19 KB
/
menubar.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<div class="col-md-12">
<div class="panel panel-success">
<div class="panel-heading">
<center><h3 >KENYA POLICE SERVICE</h3></center>
<center><h4>POLICE BOOKING SYSTEM</h4></center>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-3">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title"> <a href="index.php">
<span class="glyphicon glyphicon-home" aria-hidden="true"></span> Home</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title"> <a href="addcompl.php">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
New Case</a>
</h3>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title"> <a href="caseview.php">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span> View Cases</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>