-
Notifications
You must be signed in to change notification settings - Fork 3
/
mock.html
183 lines (180 loc) · 9.88 KB
/
mock.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="Quiz/img/favicon.ico">
<title>Chanakya Testing Center</title>
<link href="Quiz/css/font-awesome.min.css" rel="stylesheet"/>
<link href="Quiz/css/custom.css" rel="stylesheet"/>
<link href="Quiz/css/bootstrap.min.css" rel="stylesheet"/>
<link href="Quiz/css/style.default.css" rel="stylesheet"/>
</head>
<body>
<div id="all">
<header class="main-header">
<div class="navbar" data-spy="affix" data-offset-top="200">
<div class="navbar navbar-default yamm" role="navigation" id="navbar">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand home">
<img src="Quiz/img/logo.png" alt="Chanakya logo" class="img-responsive">
</a>
</div>
<div class="navbar-collapse collapse ">
<ul class="nav navbar-nav pull-right exam-paper ">
<li class="user-profile">
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="clear"></div>
<div id="heading-breadcrumbs">
<div class="container">
<div class="row">
<div class="col-md-7">
<h1>Selection Of Examination</h1>
</div>
</div>
</div>
</div>
<div class="home-carousel">
<div class="area-bg">
<div id="content">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="box-part">
<div class="">
<div class="form-group">
<label class="pull-left">Select exam you would like to appear</label>
<select id="drpNatureofExam" required="" class="form-control">
<option value="s">SELECT</option>
<option value="IX">CLASS IX</option>
<option value="X">CLASS X</option>
<option value="XI">CLASS XI</option>
<option value="XII">CLASS XII</option>
</select>
</div>
<!--Option Values of the different papers changed-->
<div class="form-group" id="divIX">
<label class="pull-left">Paper</label>
<select id="drpPastPaper_IX" required="" class="form-control">
<option value="101">IX SCIENCE</option>
<option value="102">IX ENGLISH</option>
</select>
</div>
<div class="form-group" id="divX">
<label class="pull-left">Paper</label>
<select id="drpPastPaper_X" required="" class="form-control">
<option value="201">X SCIENCE</option>
<option value="202">X ENGLISH</option>
</select>
</div>
<div class="form-group" id="divXI">
<label class="pull-left">Paper</label>
<select id="drpPastPaper_XI" required="" class="form-control">
<option value="301">XI SCIENCE</option>
<option value="302">XI ENGLISH</option>
</select>
</div>
<div class="form-group" id="divXII">
<label class="pull-left">Paper</label>
<select id="drpPastPaper_XII" required="" class="form-control">
<option value="401">XII SCIENCE</option>
<option value="402">XII ENGLISH</option>
</select>
</div>
<div class="form-group">
<a class="btn btn-primary btn-block" id="btnStart">Start Mock Test</a>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12 text-center text-primary">
<p style="font-size: 22px;">Welcome to <span style="font-weight: bold; color: #f7931e">CHANAKYA CBT Testing </span>, Practice Center</p>
</div>
</div>
<hr>
<div class="row text-cente">
<div class="col-md-12 text-justify text-primary">
<h4 style="color:#fff">INSTRUCTION FOR STUDENTS :</h4>
<p style="text-transform:none; font-weight:normal;">This Mock Test is to familiarize the students about processes of Computer Based Test (CBT) because in future you have to appear for all important Exams through CBT only. All the very Best !!!</p>
</div>
</div>
<br>
</div>
</div>
</div>
</div>
<div id="copyright">
<div class="container">
<div class="col-md-12">
<p class="text-center">© 2020 CHANAKYA Testing Practice Center</p>
</div>
</div>
</div>
</div>
<script src="Quiz/js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">
$('#divIX').hide();
$('#divX').hide();
$('#divXI').hide();
$('#divXII').hide();
$(document).ready(function () {
$('#btnStart').on('click', function (e) {
e.preventDefault();
if ($('#drpNatureofExam').val() == 'IX') {
temp = $('#drpPastPaper_IX').val();
window.location.href = "Main_login.html?type=" + btoa(temp);
} else if ($('#drpNatureofExam').val() == 'X'){
temp = $('#drpPastPaper_X').val();
window.location.href = "Main_login.html?type=" + btoa(temp);
}
else if ($('#drpNatureofExam').val() == 'XI'){
temp = $('#drpPastPaper_XI').val();
window.location.href = "Main_login.html?type=" + btoa(temp);
}
else if ($('#drpNatureofExam').val() == 'XII'){
temp = $('#drpPastPaper_XII').val();
window.location.href = "Main_login.html?type=" + btoa(temp);
}
});
$('#drpNatureofExam').on('change', function () {
if ($(this).val() == 'IX') {
$('#divIX').show();
$('#divX').hide();
$('#divXI').hide();
$('#divXII').hide();
} else if ($(this).val() == 'X'){
$('#divX').show();
$('#divIX').hide();
$('#divXI').hide();
$('#divXII').hide();
}
else if ($(this).val() == 'XI'){
$('#divXI').show();
$('#divIX').hide();
$('#divX').hide();
$('#divXII').hide();
}
else if ($(this).val() == 'XII'){
$('#divXII').show();
$('#divIX').hide();
$('#divXI').hide();
$('#divX').hide();
}
});
});
</script>
</body>
</html>