-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecPage.html
More file actions
209 lines (202 loc) · 10.3 KB
/
SecPage.html
File metadata and controls
209 lines (202 loc) · 10.3 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<head>
<title id="changetitle">Merit Information</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="secscript.css">
<link rel="icon" href="../Images/tabimg.png">
</head>
<body class="font2">
<div class="header nore">
<abbr title="ACPC Councelling Guide">
<h4 class="font1 tdtext" style="text-align: center;">ACG </h4>
</abbr>
<p class="font1 date" style="color:white;">Date -<span id='date'></span></p>
<script>
n = new Date();
y = n.getFullYear();
m = n.getMonth() + 1;
d = n.getDate();
document.getElementById("date").innerHTML = m + "/" + d + "/" + y;
</script>
</div>
<div id="box1">
<div id="leftbox" class="nore">
<abbr title="Welcome to ACG! Please Enter your Merit Information">
<h2 style="font-size:40px; text-align: left; margin-top:0px; margin-left: 5px;" class="font2 loginsign">MERIT
Information</h2>
</abbr>
<div class="background1">
<div class="transparentbox">
<div class="custom-checkbox">
<div class="checkmark"></div>
</div>
<strong style="margin-left: 20px; margin-top: -20px;" class="font2">RANKS</strong>
<input id="how-other" name="how" type="checkbox" checked="checked">
<label style="margin-left: 20px;font-weight: bold;" for="how-other" class="side-label font3">Enter your GUJCET
Rank</label>
<div class="how-other-disclosure">
<label for="how-other-explain" class="top-label">(ACPC)</label>
<input id="stdin" type="text" class="inputstyle font1" required></input>
</div>
<input id="how-other1" name="how" type="checkbox">
<label style="margin-left: 20px;font-weight: bold;" for="how-other1" class="side-label1 font3">Enter your JEE
Rank</label>
<div class="how-other-disclosure1">
<label for="how-other-explain1" class="top-label">(ACPC)</label>
<input id="jee" type="text" class="inputstyle font1" ></input>
</div>
<br>
<h2 style="margin-left: 20px;" class="font2">MARKS</h2>
<input id="how-other2" name="how" type="checkbox">
<label style="margin-left: 20px;font-weight: bold;" for="how-other2" class="side-label2 font3">Enter your 12th
Marks</label>
<div class="how-other-disclosure2">
<label for="how-other-explain2" class="top-label">(PCB/PCM-GUJ. Board)</label>
<input id="board" type="text" class="inputstyle font1"></input>
</div>
</div>
</div>
</div>
<div id="rightbox" class="nore">
<strong style="margin-left:20px; font-size:40px;" class="font2 loginsign">Select Branch</strong>
<div class="background2">
<div class="transparentbox1">
<div style="margin-left:20px;">
<form id="form" style="margin-left: 20px;">
<a style="color:brown;">Select any 1 branch of your choice</a>
<br>
<br>
<input id="Civil" type="radio" class="brb" name="field" value="Civil"> Civil </br>
<input id="IT" type="radio" class="brb" name="field" value="IT"> IT </br>
<input id="CS" type="radio" class="brb" name="field" value="CS"> CS </br>
<input id="EE" type="radio" class="brb" name="field" value="EE"> EE </br>
<input id="ECE" type="radio" class="brb" name="field" value="ECE"> ECE </br>
<input id="Chemical" type="radio" class="brb" name="field" value="Chemical"> Chemical</br>
<!-- <input id="Environment" type="radio" class="brb" name="field" value="Environment"> Environment </br> -->
<input id="ME" type="radio" class="brb" name="field" value="ME"> ME </br>
<br>
<!--
<input id="Auto" type="radio" class="brb" name = "field" value="Auto"> Auto </br>
<input id="FC" type="radio" class="brb" name = "field" value="FC"> FC </br>
<input id="AI" type="radio" class="brb" name = "field" value="AI"> AI </br>
<input id="Aero" type="radio" class="brb" name = "field" value="Aero">Aero </br>
<input id="Mechatronics" type="radio" class="brb" name = "field" value="Mechatronics"> Mechatronics </br> -->
<button class="btn font1" onclick="submitclicked()" id="run">Find(GUJCET)</button>
</form>
<hr>
<br>
<!-- <input type="submit" class="yellow" value="Get sum" onclick="jeeo()"><br> -->
<button class="btn font1" onclick="jeeo()">Find (JEE)</button>
<button class="btn font1" onclick="boardo()">Find (Board)</button>
</div>
<br>
<br>
<br>
<br>
<!-- <abbr title="Check Results"><div class="btn" onclick="submitclicked()">Find</div></abbr> -->
</div>
</div>
</div>
</div>
<!-- Result page will be displayed -->
<div id="box2">
<div id="leftbox2" style="background-color:bisque;" class="nore">
<a class="font1" style="font-size: 50px; color:rgb(240, 196, 145);">
<div id="box2"><span class="backbtn" onclick="backtosecpage()"> ◀</span> </div>Showing Results for <span
style="font-size: 50px; color:rgb(250, 0, 0)" class="font1" id="branchchange"></span> Branch</a>
<div id="print-content">
<code style="font-size: 30px;color:azure" id="output"></code>
<br>
<table id="displayresult" class="tg font1 gredient" style="color:white; margin-left: 50px; margin-top: 50px;">
<thead>
<!-- <tr style="color:black;">
<th class="tg-0pky">Sr. No</th>
<th class="tg-0pky">College </th>
<th class="tg-0pky">Closing Rank 20-21</th>
<th class="tg-0pky">Closing Rank 19-20</th>
<th class="tg-0pky">Reviews</th>
<th class="tg-0pky"><abbr title="Location"><i style="margin-left: 50px;margin-right: 50px;" class="material-icons"></i></abbr></th>
<th class="tg-0pky"><abbr title="Description"><i style="margin-left: 50px;margin-right: 50px;" class="material-icons"></i></abbr></th>
</tr> -->
</thead>
<tbody class="bold" style="text-decoration: none;color:black;">
<!-- <tr>
<td class="tg-0pky">1</td>
<td class="tg-0pky"><a style="text-decoration: none;color:rgb(236, 166, 74);" href="https://www.msubaroda.ac.in/">MSU</a></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"><a style="text-decoration: none;color:rgb(3, 3, 3);" href="https://www.google.com/maps/dir//daiict/data=!4m6!4m5!1m1!4e2!1m2!1m1!1s0x395c2a3c9618d2c5:0xc54de484f986b1fa?sa=X&ved=2ahUKEwj56pz66YLzAhUbfX0KHSmEArQQ9Rd6BAhQEAU">Gandhinagar</a></td>
<td class="tg-0pky"></td>
</tr>
<tr>
<td class="tg-0pky">2</td>
<td class="tg-0pky"><a style="text-decoration: none;color:rgb(236, 166, 74);" href="https://www.daiict.ac.in/">DAIICT</a></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
<td class="tg-0pky"></td>
</tr> -->
</tbody>
</table>
<a class="font1" style="color: rgb(21, 189, 255);" href="../Feedbackto/Feedback.html" target="_blank">We want to
hear from you!👍</a>
<div style="margin-top:20px; margin-left:20px;">
<!-- <input type="button" onclick="printDiv('print-content')" value="Print My Results"/>(this will print results only) -->
<abbr title="(this will print results only)"><button type="button" onclick="printDiv('print-content')"
class="printbutton font1"><i style="font-size: 40px; align-content: center;"
class="material-icons"></i></button></abbr>
<!-- Feedback Stuff -->
<div>
</div>
</div>
</div>
</div>
</div>
<div class="int transbox">
<p>JEE/Board Result to appear (if selected)</p>
<a style="font-size: 30px;color:azure" id="titlejee"></a>
<a style="font-size: 30px;color:azure" id="titleboard"></a>
<code style="font-size: 30px;color:rgb(241, 9, 9)" id="outputjee"></code>
<code style="font-size: 30px;color:rgb(241, 9, 9)" id="outputboard"></code>
<br>
<a style="font-size: 30px;color:azure" id="jeechange"></a>
<a style="font-size: 30px;color:azure" id="boardchange"></a>
<p style="text-align:center;margin-top:100px;color: orange;">Intreseted in how we predict suitable colleges for you?
</p>
<a target="_blank" href="../Howtobasic/howtobasic.html"
style="color: skyblue;text-decoration: none;text-align: center;">
<p>Learn Here</p>
</a><br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<footer style="color:white;" class="clearfix">
<adress class="font1">Office No 4, Chandivali Farms, Sub Survey-1, Sakinaka, ABCD Area (e)
City Ahmedabad
Gujarat<br>Write an email us at <a href="mailto:abc@xyz.com"
style="color:sandybrown; text-decoration: none;">Email</a><br>
In case of any help please contact during 10 a.m. to 6 p.m. at <i class="material-icons"></i> <a
href="tel:0123456789" class="font1" target="_blank" style="color:sandybrown">Call
+91-(01)-23456789</a><br>Copyright © 2021,ACG</address>
<br>
<p class="font1">
<a target="_blank" style="color: rgb(255, 0, 0);text-decoration: none;"
href="https://cors-anywhere.herokuapp.com/corsdemo">Fix Error </a>
<a style="color: rgb(0, 255, 255);text-decoration: none;"
href="../index.html">Home </a>
</p>
</footer>
</body>
<script src="secjs.js"></script>
<script src="Thirdjava.js"></script>
<script src="GUJCET.js"></script>
<script src="JEE.js"></script>
<script src="Board.js"></script>
</html>