-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmech.html
108 lines (100 loc) · 4.12 KB
/
mech.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<script src='main.js'></script>
</head>
<body>
<div class="header">
<h1>Training and Placement Cell</h1>
<a href="home.html"><img src=".././images/JJMlogo.png"></a>
</div>
<div class="backimg"></div>
<div class="navbar">
<a href="home.html">Home</a>
<a href="#news">News</a>
<div class="dropdown">
<button class="dropbtn">Training
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="apt.html">Aptitude</a>
<a href="#">Group Discussion</a>
<a href="#">Interview</a>
<a href="#">Coding</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Departments
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="cse.html">Computer Science and Engineering</a>
<a href="it.html">Information Technology</a>
<a href="#">Mechanical Engineering</a>
<a href="#">Civil Engineering</a>
<a href="#">Electrical Engineering</a>
<a href="#">Electronics and Telecommunication</a>
</div>
</div>
<a href="#news">Contact Us</a>
<div class="srch">
<label>Search</label>
<i class="bi bi-search"></i>
<input type="search">
</div>
</div>
<div class="heading"><h1>Welcome to Mechanical department</h1></div>
<form>
<h1>Student Registeration</h1>
<div class="stu">
<div class="right">
<label for="name">Last Name:</label>
<input type="text" name="fname"><br><br></div>
<div class="left">
<label for="name">First Name:</label>
<input type="text" name="lname"><br><br></div>
<label for="sex">Gender:</label>
<input type="radio" name="sex" id="male" value="male">
<label for="male">Male</label>
<input type="radio" name="sex" id="female" value="female">
<label for="female">Female</label> <br><br>
<label for="AY">Academic Year: </label>
<select name="year" id="year">
<option>Select an option</option>
<option value="FY">First Year</option>
<option value="SY">Second Year</option>
<option value="TY">Third Year</option>
<option value="BE">Final Year</option>
</select><br>
<label for="file">Resume:</label>
<input type="file" name="res"><br>
<label for="prn">PRN Number:</label>
<input type="text" name="prn" id="prn">
<div class="passleft"><label>Create Password:</label>
<input type="password" name="pass" id="pass"></div>
<label for="cpass">Confirm Password:</label>
<input type="password" name="cpass" id="cpass">
<div class="sbtn"><button type="submit"><a href="mechhomepage.html">SUBMIT</a></button></div>
<p><a href="login.html">Already registerd?</a></p>
</div>
</form>
<div class="frm2">
<form>
<h1>Student Login</h1>
<label>PRN Number:</label>
<input type="text" id="prnno">
<label>Password:</label>
<input type="password" id="passw">
<button><a href="mechhomepage.html">LOGIN</a></button>
</div>
</form>
</body>
</html>