-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathneet.php
More file actions
108 lines (101 loc) · 3.48 KB
/
neet.php
File metadata and controls
108 lines (101 loc) · 3.48 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
<html>
<head>
<title>College Search</title>
<style>
#head{
width: 1518px;
height: 120px;
background-color: forestgreen;
}
.top
{
font-size: 50;
margin-left: 350px;
margin-top: 300px;
}
.bottom
{
margin-left: 430px;
font-size: 30;
margin-bottom: 20px;
}
.foot{
width: 1518px;
height: 30px;
position: relative;
background-color: forestgreen;
margin-top: 5%;
}
</style>
</head>
<body>
<script type="text/javascript">
function check()
{
var a;
a = parseInt(document.getElementById("t3").value);
if(isNaN(a))
{
alert("Please insert a valid Input");
return false;
}
else{
if(a<1 || a>2000)
{
alert("Not a valid input");
return false;
}
}
}
function update()
{
var a;
a = document.getElementById("t3").value;
if(isNaN(a))
{
alert("Not a Number,Please Enter number");
}else{
return true;
}
}
</script>
<div id='head'>
<font class='top'>COLLEGE ADMISSION PREDICTOR</font>
<br>
<font class="bottom">(Boards / JEE(Mains + Advance) / NEET / AIIMS)</font>
</div>
<table align="right">
<tr>
<td><a href="http://localhost/puneUniv/" type="button">Logout</a>
</tr></table>
<h1>Search College a/c to your NEET Rank : </h1>
<br>
<br>
<form action="NEETschool.php" method="post" onSubmit="return check()">
<table>
<tr>
<h1> MARKS IN :- </h1>
</tr>
<tr>
<td>NAME</td><td>:</td><td><input type="text" name="t1" id="t1" size="40" required></td>
</tr>
<tr>
<td>E-mail ID</td><td>:</td><td><input type="email" name="t2" id="t2" size="40" required></td>
</tr>
<tr>
<td>NEET RANK</td><td>:</td><td><input type="text" name="t3" id="t3" size="40" pattern="([0-9]).{0,}" title="Use number." onkeyup="update()" maxlength="4"></td>
<td>(1-2000)</td>
</tr>
<!-- <tr>
<td>Stream</td><td>:</td><td><select name="t4" id="t4"><option>Select any one</option><option value="MEDICAL">Medical</option></select></td>
</tr> -->
<tr>
<td></td><td><br><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
<footer class="foot">
<p><center><b>@copyright | Designed by IMED,Pune</b></center></p>
</footer>
</body>
</html>