-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.62 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
<!DOCTYPE>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="text/html; charset=utf-8" />
<title>Ring 2 poll</title>
<link rel="stylesheet" type="text/css" href="lib/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/homepage.css" />
<link rel="stylesheet" type="text/css" href="css/defaults.css" />
<link rel="stylesheet" type="text/css" href="lib/thirdparty/datatable/css/jquery.dataTables.min.css" />
<link rel="stylesheet" type="text/css" href="lib/thirdparty/datatable/css/jquery.dataTables_themeroller.css" />
<link rel="stylesheet" type="text/css" href="lib/thirdparty/Jquery/css/jquery-ui.min.css" />
<script type="text/javascript" src="lib/thirdparty/Jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="lib/thirdparty/Jquery/jquery-ui.min.js"></script>
<script type="text/javascript" src="lib/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="lib/thirdparty/soyutils.js"></script>
<script type="text/javascript" src="lib/thirdparty/highcharts/highcharts.js"></script>
<script type="text/javascript" src="lib/thirdparty/highcharts/highcharts-3d.js"></script>
<script type="text/javascript" src="lib/thirdparty/datatable/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="lib/thirdparty/highcharts/donut/donut.js"></script>
<script type="text/javascript" src="lib/thirdparty/highcharts/barCharts/barchartsComp.js"></script>
<script type="text/javascript" src="js/pollModel.js"></script>
<script type="text/javascript" src="js/pollHome.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-1"></div>
<div class="col-xs-10 contentColumn">
<div class="row logoRow">
<div class="logoImg"></div>
</div>
<div class="row chartRow">
<div class="chartTitle"></div>
<div class="col-xs-5 pieChartView"></div>
<div class="col-xs-1"></div>
<div class="col-xs-5 barChartView"></div>
</div>
<div class="row calenderRow">
<span class="tableTitle"> Polling result by number </span>
<p class="toDatepickerHolder">To: <input type="text" class="toDatepicker"></p>
<p class="fromDatepickerHolder">From: <input type="text" class="fromDatepicker"></p>
</div>
<div class="row tableRow">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="tableGrid"></table>
</div>
</div>
</div>
</div>
</body>
</html>