-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewer.html
116 lines (112 loc) · 3.87 KB
/
viewer.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
<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/viewer.css" rel="stylesheet" />
</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>Viewer</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">
<input id="registration-number" class="form-control form-control-sm"
placeholder="Enter name or registration number" />
</div>
<div class="header-message">
<button id="calculate-button" class="btn btn-sm btn-success">
SUBMIT
</button>
</div>
</div>
</div>
</div>
</div>
<!-- STUDENT INFO CARD -->
<div class="container student-info-container" id="student-info">
<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 student-info-table">
<tr>
<td rowspan="2" class="change-arrows mid-align" id="arrow-left">
<span class="badge badge-secondary marks-badge">PREV</span>
</td>
<td id="student-name"></td>
<td rowspan="2" class="change-arrows" id="arrow-right">
<span class="badge badge-secondary marks-badge">NEXT</span>
</td>
</tr>
<tr>
<td id="student-course"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- RESULT CARD -->
<div class="container grade-container" id="result">
<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 id="subject-table" class="table table-striped">
<tbody></tbody>
</table>
</div>
<div class="gpa-row" id="show-gpa"></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/viewer.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>