-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagentdashboard.php
More file actions
142 lines (108 loc) · 4.06 KB
/
Copy pathagentdashboard.php
File metadata and controls
142 lines (108 loc) · 4.06 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
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>FMS</title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="images/flood.ico">
<link rel="stylesheet" href="vendor/bootstrap-select/dist/css/bootstrap-select.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/skin.css">
<!-- Vectormap -->
<link href="vendor/jqvmap/css/jqvmap.min.css" rel="stylesheet">
<style>
#map {
height: 400px;
width: 100%;
}
.marker {
background-color: green;
width: 20px;
height: 20px;
border-radius: 50%;
position: absolute;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<!--*******************
Preloader start
********************-->
<div id="preloader">
<div class="sk-three-bounce">
<div class="sk-child sk-bounce1"></div>
<div class="sk-child sk-bounce2"></div>
<div class="sk-child sk-bounce3"></div>
</div>
</div>
<!--*******************
Preloader end
********************-->
<!--**********************************
Main wrapper start
***********************************-->
<div id="main-wrapper">
<?php include("includes/agentnav.php"); ?>
<!--**********************************
Header end ti-comment-alt
***********************************-->
<!--**********************************
Sidebar start
***********************************-->
<?php include("includes/agentsidebar.php"); ?>
<!--**********************************
Sidebar end
***********************************-->
<!--**********************************
Content body start
***********************************-->
<?php include("includes/adminmain.php"); ?>
<!--**********************************
Content body end
***********************************-->
<!--**********************************
Footer start
***********************************-->
<?php include("includes/footer.php"); ?>
<!--**********************************
Footer end
***********************************-->
<!--**********************************
Support ticket button start
***********************************-->
<!--**********************************
Support ticket button end
***********************************-->
</div>
<!--**********************************
Main wrapper end
***********************************-->
<!--**********************************
Scripts
***********************************-->
<!-- Required vendors -->
<script src="vendor/global/global.min.js"></script>
<script src="vendor/bootstrap-select/dist/js/bootstrap-select.min.js"></script>
<script src="js/custom.min.js"></script>
<script src="js/dlabnav-init.js"></script>
<!-- Chart Morris plugin files -->
<script src="vendor/raphael/raphael.min.js"></script>
<script src="vendor/morris/morris.min.js"></script>
<!-- Chart piety plugin files -->
<script src="vendor/peity/jquery.peity.min.js"></script>
<!-- Demo scripts -->
<script src="js/dashboard/dashboard-2.js"></script>
<!-- Vectormap -->
<script src="vendor/jqvmap/js/jquery.vmap.min.js"></script>
<script src="vendor/jqvmap/js/jquery.vmap.world.js"></script>
<script src="vendor/jqvmap/js/jquery.vmap.usa.js"></script>
<!-- All init script -->
<script src="js/plugins-init/jqvmap-init.js"></script>
<!-- Svganimation scripts -->
<script src="vendor/svganimation/vivus.min.js"></script>
<script src="vendor/svganimation/svg.animation.js"></script>
</body>
</html>