-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreportpayroll.php
More file actions
134 lines (103 loc) · 6.45 KB
/
reportpayroll.php
File metadata and controls
134 lines (103 loc) · 6.45 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
//include_once('config.php');
//exit($base_url);
include_once('assets/includes/header.php');
if($_SESSION['logged_in'] != '1'){
session_start();
header('Status: 401');
header('Location: ' . urlencode('index.php'));
}
include_once('assets/includes/menubar.php');
?>
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Employee Analysis
</h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<!--Begin Page Content-->
<div class="row">
<div class="col-md-12">
<!-- BEGIN EXAMPLE TABLE PORTLET-->
<div class="portlet light bordered">
<div class="portlet-body">
<div class="table-toolbar">
<div class="row">
<div class="col-md-6">
</div>
<div class="col-md-6">
<div class="btn-group pull-right">
<button class="btn blue btn-outline dropdown-toggle" data-toggle="dropdown">Tools
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;">
<i class="fa fa-print"></i> Print </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-file-pdf-o"></i> Save as PDF </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-file-excel-o"></i> Export to Excel </a>
</li>
</ul>
</div>
</div>
</div>
</div>
<table class="table table-striped table-bordered table-hover table-checkable order-column" id="sample_1">
<thead>
<tr>
<th> </th>
<th> Emp # </th>
<th> First Name </th>
<th> Last Name </th>
<th> Status </th>
<th> Gender </th>
<th> Department </th>
<th> Cost Center </th>
<th> Actions </th>
</tr>
</thead>
<tbody>
<!--Begin Data Table-->
<tr class="odd gradeX">
<td> 1 </td>
<td> A0013 </td>
<td> Andrew </td>
<td> Moturi </td>
<td> Permanent </td>
<td> Male </td>
<td>A128355F</td>
<td>12672345</td>
<td><a href="" class="btn btn-sm blue">View</a> <a href="" class="btn btn-sm red">Remove</a> </td>
</tr>
<!--End Data Table-->
</tbody>
</table>
</div>
</div>
<!-- END EXAMPLE TABLE PORTLET-->
</div>
</div>
<div class="clearfix"></div>
<!-- END DASHBOARD STATS 1-->
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<div class="page-footer">
<div class="page-footer-inner"> 2016 © Redsphere Consulting v0.8
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
</div>
<!-- END FOOTER -->
</div>
<?php include_once('assets/includes/footer.php');?>