-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
96 lines (92 loc) · 2.79 KB
/
settings.html
File metadata and controls
96 lines (92 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<title>Leave Tracker</title>
<link rel="stylesheet" href="css/app.css"></link>
<link rel="stylesheet" href="css/jquery-ui.min.css">
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/db.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/settings.js"></script>
<script type="text/javascript" src="js/employee.js"></script>
<script type="text/javascript" src="js/schedule.js"></script>
</head>
<body>
<div id="header"></div>
<div id="container">
<div id="emp-details" style="display:none">
<div><span id="label">Staff No. : </span><span id="sno"></span></div>
<div><span id="label">Name : </span><span id="name"></span></div>
<div><span id="label">Category : </span><span id="cat"></span></div>
<div><span id="label">Leave Entitled : </span><span id="total"></span></div>
<div><span id="label">Leave Taken : </span><span id="taken"></span></div>
<div><span id="label">Leave Scheduled : </span><span id="schedule"></span></div>
<div><span id="label">Leave Available : </span><span id="balance"></span></div>
<div>Leave History</div>
<table border="1" id="leave-history">
<tr>
<th>#</th>
<th>From</th>
<th>To</th>
<th>No of Days</th>
<th>Status</th>
<th>Date Added</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</table>
</div>
<div id="employee">
<div id="emp-cat"></div>
<table id="emp-view" border="1">
<tr>
<th rowspan="3">Staff No.</th>
<th rowspan="3">Name</th>
<th rowspan="3">Category</th>
<th colspan="6">Leave Details</th>
<th colspan="2">Actions</th>
</tr>
<tr>
<th colspan="4">Entitled </th>
<th rowspan="2">Taken</th>
<th rowspan="2">Available</th>
<th rowspan="2">Edit</th>
<th rowspan="2">Delete</th>
</tr>
<tr>
<th>General</th>
<th>C-Off</th>
<th>Carry</th>
<th>Total</th>
</tr>
</table>
</div>
<div id="others">
<table id="set-category" border="1">
<tr>
<th rowspan="2">#</th>
<th rowspan="2">Category</th>
<th rowspan="2">Annual Leave</th>
<th colspan="2">Actions</th>
</tr>
<tr>
<th>Edit</th>
<th>Delete</th>
</tr>
</table>
<table id="set-status" border="1">
<tr>
<th rowspan="2">#</th>
<th rowspan="2">Status</th>
<th colspan="2">Actions</th>
</tr>
<tr>
<th>Edit</th>
<th>Delete</th>
</tr>
</table>
</div>
</div>
</body>
</html>