-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstats.html
108 lines (104 loc) · 3.55 KB
/
stats.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
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="GPA Calculator for Sikkim Manipal Institute of Technology." />
<meta name="keywords" content="gpacalculator,gpa,smit,sikkim,manipal,calculator" />
<meta name="author" content="Rishav Anand" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0" />
<meta name="theme-color" content="#3F6AE6" />
<title>GPA Calculator</title>
<link rel="icon" sizes="512x512" href="img/calculator.png" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link href="css/mont.css" rel="stylesheet" />
<link rel="manifest" href="manifest.json" />
<link href="css/font-awesome.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/stats.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.min.js"></script>
</head>
<body>
<!-- LOADER -->
<div class="loader"><img src="img/loader.gif" class="img-loader" /></div>
<!-- SIDEBAR BUTTON -->
<span onclick="goBack()" class="sidebar-button">
<i class="fa fa-arrow-left" aria-hidden="true"></i>
</span>
<!-- HEADER -->
<div class="header">
<div class="container">
<div class="row">
<div class="header-message">
<h6><b>Statistics</b></h6>
</div>
<div class="offset-md-3 col-md-6 col-sm-12 offset-sm-0 header-message-container">
<div class="header-message">
<select id="exam-id" class="form-control form-control-sm">
<option value="non">Select examination</option>
<option value="33">November/December 2017 Semester Examination</option>
<option value="35">April/May 2018 Semester Examination</option>
<option value="41">November/December 2018 Semester Examination</option>
<option value="45">April/May 2019 Semester Examination</option>
<option value="19" selected="selected">Nov/Dec 2019 Semester Examination</option>
</select>
</div>
<div class="header-message">
<select id="subject-code" class="form-control form-control-sm">
</select>
</div>
<div class="header-message">
<button id="submit-button" class="btn btn-sm btn-success">
SUBMIT
</button>
</div>
</div>
</div>
</div>
</div>
<!-- STATS -->
<div class="container stats-container first-container" id="stats">
<div class="row">
<div class="offset-md-3 col-md-6 col-sm-12 offset-sm-0">
<div class="card shadow-sm">
<div class="card-body">
<canvas id="myChart" width="400" height="400"></canvas>
</div>
</div>
</div>
</div>
</div>
<!-- STATS DATA -->
<div class="container stats-container second-container" id="stats-data">
<div class="row">
<div class="offset-md-3 col-md-6 col-sm-12 offset-sm-0">
<div class="card shadow-sm">
<div class="card-body">
<table class="table table-striped stats-data-table" id="stats-data-table">
<thead>
<td>Grades</td>
<td>Count</td>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/stats.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116549528-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-116549528-1");
</script>
</body>
</html>