-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.html
117 lines (107 loc) · 5.04 KB
/
info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel = "icon" href ="https://raw.githubusercontent.com/BTP-Project/Virtual-Interview/master/logo1.jpg" type = "image/x-icon">
<title>Info</title>
<link rel="stylesheet" type="text/css" href="css/container.css"/>
<link rel="stylesheet" type="text/css" href="css/label.css"/>
<link rel="stylesheet" type="text/css" href="css/input.css"/>
<link rel="stylesheet" type="text/css" href="css/button.css"/>
<link rel="stylesheet" type="text/css" href="css/background.css"/>
<link rel="stylesheet" type="text/css" href="css/anchor.css"/>
<link rel="stylesheet" type="text/css" href="css/textarea.css"/>
<link rel="stylesheet" type="text/css" href="css/note.css"/>
<link rel="stylesheet" type="text/css" href="css/anchor.css"/>
<link rel="stylesheet" type="text/css" href="css/Navbar.css"/>
</head>
<body>
<div class ="navdiv">
<ul class="nav">
<li><a class="navbar navli" onclick="myHome()">Home</a></li>
<li><a class="navbar navli" onclick="myProfile()">Profile</a></li>
<li><a class="navbar navli" onclick="myUpdate()">Update</a></li>
<li><a class="navbar navli" onclick="myRegister()">Register/Sign in</a></li>
<li><a class="navbar navli" onclick="myFeedback()">Feedback</a></li>
<li><a class="navbar navli" onclick="myFeatures()">Features</a></li>
<li><a href="https://virtual-interview-d921a.web.app" class="navbar navli" target="_blank">Web Chat</a></li>
<li><a class="navbar navli" target="_blank" onclick="myServer()">Video Conferencing</a></li>
<li style="float:right"><a class="active navbar navli" onclick="myContactUs()">Contact Us</a></li>
<li style="float:right"><a class="result navbar navli" onclick="myResult()">Result</a></li>
</ul>
<script>
function myHome() {
window.open("/");
}
function myProfile() {
window.open("/profile");
}
function myUpdate() {
window.open("/update");
}
function myRegister() {
window.open("/signin");
}
function myContactUs() {
window.open("/contactus");
}
function myFeedback() {
window.open("/feedback");
}
function myFeatures() {
window.open("/features");
}
function myResult() {
window.open("/result");
}
function myServer(){
window.open("/server");
}
</script>
</div>
<div class="notecontainer rcorners2">
<h2><center><u>Note:</u></center></h2>
<ul>
<li>
For general instruction regarging filling form, click on the botton below.<br>
<a href="pdf/instructions.pdf" target="_blank" class="note"><b>Instructions</b></a>
</li>
<li>In MIS Coloumn you have write MIS as College code + College MIS
(e.g. If your MIS is 5077 and College Code is 1234 then you have to write 12345077)
To check your college code,click on the button below:<br>
<a href="pdf/colleges.pdf" target="_blank" class="note"><b>College Code</b></a>
</li>
</ul><br>
</div>
<div class="container rcorners2">
<form action="/sqlin" name="form" method="post">
<center><img src="https://raw.githubusercontent.com/BTP-Project/Virtual-Interview/master/logo.jpg" height="100px" width="150px"></center>
<labeL><h1><center>Information</center></h1></labeL>
<label>Full Name<span style="color:#ff0000">*</span>
<input type="text" name="FullName" id="FullName" class="main" required><br>
<label>Institute</label><span style="color:#ff0000">*</span>
<input type="text" name="Institute" id="Institute" class="main" required><br>
<label>MIS No.</label><span style="color:#ff0000">*</span>
<input type="number" name="Mis" id="Mis" placeholder="College Code + College MIS Number" class="main" required><br>
<label>Age</label><span style="color:#ff0000">*</span>
<input type="number" name="Age" id="Age" class="main" required><br>
<label>Mobile Number</label><span style="color:#ff0000">*</span>
<input type="number" name="MobileNo" id="MobileNo" class="main" required><br>
<label>Email ID</label><span style="color:#ff0000">*</span>
<input type="text" name="EmailID" id="EmailID" class="main" required><br>
<label>Resume URL</label><span style="color:#ff0000">*</span>
<input type="text" name="ResumeURL" id="ResumeURL" class="main" required><br>
<label>Address</label><span style="color:#ff0000">*</span>
<textarea id="Address" name="Address" required></textarea>
<input type="submit" value="Submit" class="main" ><br><br>
</form>
</div>
<div class="notecontainer rcorners2">
<p>
For any further query regarding form filling :<br><br>
<b>Contact No.:</b> 9575931349 (Mon-Fri, between 11:00AM-8:00PM) <br>
<b>Email: </b>[email protected]
</p>
</div>
</body>
</html>