-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathupdateadmin.html
62 lines (57 loc) · 2.08 KB
/
updateadmin.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
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
<!-- Cases Panel Start -->
<div class="container-fluid pt-4 px-4">
<div class="row g-4">
<div class="col">
<div class="casebox bg-light rounded d-flex align-items-center justify-content-between p-4" style="padding-left: 200px;">
<a href="">
<p class="cases mb-2">Flight Information</p>
</a>
</div>
</div>
<div class="col">
<div class="casebox bg-light rounded d-flex align-items-center justify-content-between p-4">
<a href="">
<p class="cases mb-2">Approval Request</p>
</a>
</div>
</div>
</div>
</div>
<div class="container-fluid pt-4 px-4">
<div class="row g-4">
<div class="col">
<div class="casebox bg-light rounded d-flex align-items-center justify-content-between p-4">
<a href="">
<p class="cases mb-2">Staff Information</p>
</a>
</div>
</div>
<div class="col">
<div class="casebox bg-light rounded d-flex align-items-center justify-content-between p-4">
<a href="">
<p class="cases mb-2">Analyisis</p>
</a>
</div>
</div>
</div>
</div>
<!-- Cases Panel End -->
</div>
</div>
<script>
(function ($) {
"use strict";
var fullHeight = function () {
$(".js-fullheight").css("height", $(window).height());
$(window).resize(function () {
$(".js-fullheight").css("height", $(window).height());
});
};
fullHeight();
$("#sidebarCollapse").on("click", function () {
$("#sidebar").toggleClass("active");
});
})(jQuery);
</script>
</body>
</html>