-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplacement.php
183 lines (162 loc) · 4.96 KB
/
placement.php
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
<?php
ob_start();
session_start();
include"includes/db_conn.php";
include"includes/header.php";
?>
<body>
<header id="home">
<?php
include"includes/navmenu.php";
?>
</header>
<br>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<center>
<h2>Placement</h2>
<span><b>The term placement is often used to refer to the successful allocation of a person to a job....<b></span>
</center>
<div>
<br>
<br>
</div>
<div class="container">
<form method="post" class="form-group" action="Process/placement_submit.php">
<div class="row">
<div class="col-25">
<label for="name">Name</label>
</div>
<div class="col-75">
<input type="text" name="name" class="form-control" placeholder="Your name.." required>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="email">Email</label>
</div>
<div class="col-75">
<input type="email" name="email" class="form-control" placeholder="Your email.." required>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="Branch">Branch</label>
</div>
<div class="col-75">
<select id="Branch" name="Branch" class="form-control" required>
<option value="Computer Engineering">Computer Engineering</option>
<option value="Electrical Engineering">Electrical Engineering</option>
<option value="Civil Engineering">Civil Engineering</option>
<option value="Electronics and Telecommunication Engineering">Electronics and Telecommunication Engineering</option>
<option value="Mechanical Engineering">Mechanical Engineering</option>
</select>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="PassYear">PassOut Year</label>
</div>
<div class="col-75">
<select name="PassYear" class="form-control" required>
<option value="2003">2003</option>
<option value="2004">2004</option>
<option value="2005">2005</option>
<option value="2006">2006</option>
<option value="2007">2007</option>
<option value="2008">2008</option>
<option value="2009">2009</option>
<option value="2010">2010</option>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
<option value="2017">2017</option>
<option value="2018">2018</option>
<option value="2019">2019</option>
</select>
</div>
<br>
<div class="">
<div class="col-25">
<label for="name_ind">Name of Industry</label>
</div>
<div class="col-75">
<input type="text" id="name_ind" class="form-control" name="name_ind" placeholder="Industry name..." required>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="Dept">Department for Placement</label>
</div>
<div class="col-75">
<select name="Dept" class="form-control" required>
<option value="Computer Engineering">Computer Engineering</option>
<option value="Electrical Engineering">Electrical Engineering</option>
<option value="Civil Engineering">Civil Engineering</option>
<option value="Electronics and Telecommunication Engineering">Electronics and Telecommunication Engineering</option>
<option value="Mechanical Engineering">Mechanical Engineering</option>
</select>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="Sector">Sector</label>
</div>
<div class="col-75">
<input type="text" class="form-control" name="Sector" placeholder="eg..IT Sector,etc" required>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="package">Package</label>
</div>
<div class="col-75">
<input type="text" name="Package" class="form-control" placeholder="Per annumn...eg 1.5 lakh" required>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="nosemployee">Number of Employee</label>
</div>
<div class="col-75">
<input type="text" class="form-control" name="nosemployee" placeholder="Number of students..." required>
</div>
</div>
<div class="">
<div class="col-25">
<label for="datetime">Suitable Date and Time</label>
</div>
<br>
<div class="col-75">
<input type="date" name="Date" required> <input type="time" name="Time" required>
</div>
<br>
<div class="row">
<center>
<input type="submit" class="btn btn-success" name="submit" value="Submit">
<input type="reset" class="btn btn-danger" value="Reset">
</center>
</div>
</form>
</div>
</body>
</html>
<br>
<?php
include"includes/footer.php";
include"includes/modals.php";
?>