forked from florars3/catMWebGui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·160 lines (133 loc) · 5.97 KB
/
index.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!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, shrink-to-fit=no, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Simple Sidebar - Start Bootstrap Template</title>
<!-- amCharts scripts-->
<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/pie.js"></script>
<script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"></script>
<link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" />
<script src="https://www.amcharts.com/lib/3/themes/light.js"></script>
<script type="text/javascript" src="https://www.amcharts.com/lib/3/serial.js"></script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<!-- Custom am charts css -->
<link href="css/amCharts.css" rel="stylesheet">
<link href="css/amCharts2.css" rel="stylesheet">
<link href="css/amCharts3.css" rel="stylesheet">
<!-- Font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<script>
$(function() {
$("sidebar-nav").click(function() {
// remove classes from all
$("li").removeClass("active");
// add class to the one we clicked
$(this).addClass("active");
});
});
</script>
<div id="wrapper" class="toggled">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li>
<a href="#menu-toggle" id="menu-toggle"><i class="fa fa-bars" style="font-size:25px;"
aria-hidden="true"></i></a>
</li>
<li class="active">
<a href="index.html"><i class="fa fa-tachometer" style="font-size:25px;" aria-hidden="true"></i></a>
</li>
<li>
<a href="Vehicle1.html"><i class="fa fa-truck" style="font-size:25px;" aria-hidden="true"></i></i></a>
</li>
<li>
<a href="#"><i class="fa fa-truck" style="font-size:25px;" aria-hidden="true"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-car" style="font-size:25px;"></i></a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<div id="page-wrapper">
<div class="container-fluid">
<!-- Page Heading -->
<div class="row">
<div class="col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"> FLEET VEHICLE STATUS </h3>
<span class="pull-right clickable"><i class="glyphicon glyphicon-chevron-up"></i></span>
</div>
<div class="panel-body">
<div id="chartdiv"></div>
<div id="chartdiv1"></div>
</div>
<!--
<div class="panel-heading">
<h3 class="panel-title"><i class="glyphicon glyphicon-road"></i> LineChart</h3>
<a data-toggle="collapse" href="#collapse1">Collapsible panel</a>
</div>
<div id="collapse1" class="panel-collapse collapse">
<div class="panel-body">
<div id="chartdiv2"></div>
</div>
</div>
-->
</div>
</div>
<div class="col-lg-8">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="glyphicon glyphicon-map-marker"></i> Interative Map</h3>
</div>
<div class="panel-body">
<div id="chartdiv2"></div>
<div class="text-right">
<a href="#">View Details <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- amCharts javascript -->
<script src="js/amCharts.js"></script>
<script src="js/amCharts2.js"></script>
<script src="js/amCharts3.js"></script>
<script src="js/collapse.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>