-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 1.27 KB
/
index.html
File metadata and controls
58 lines (48 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Matora</title>
</head>
<body>
<form method = 'post' >
<label>JEE Main Rank</label>
<input type="text" name="main" placeholder="Enter your JEE Main rank.">
<br>
<label>JEE Advanced Rank</label>
<input type="text" name="adv" placeholder="Enter your JEE Advanced rank.">
<br>
<label>BITSAT Score</label>
<input type="text" name="bit" placeholder="Enter your BITSAT score.">
<label>Home State </label>
<select name="hs">
<option value="UP">Uttar Pradesh</option>
<option value="MP">Madhya Pradesh</option>
</select>
<select name="dura">
<option value="4">4</option>
<option value= "5">5</option>
</select>
<label>Duration Preference</label>
<select name="dp">
<option value= "True"> Yes </option>
<option value= "False"> No</option>
</select>
<label>Duration Strict</label>
<select name="ds">
<option value= "True"> Yes </option>
<option value="False"> No</option>
</select>
<label>Branch Strict</label>
<select name="bs">
<option value="True"> Yes </option>
<option value="False"> No</option>
</select>
<label> Branch</label>
<select name="branch">
<option value= "Computer Science"> CS </option>
</select>
</div>
<button type="submit" >Submit</button>
</form>
</body>
</html>