forked from sarveshpathak139/HRMIS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Requisition.html
377 lines (296 loc) · 10.7 KB
/
Requisition.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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HR & Admin dashbord</title>
<!-- Google font cdn file imported here -->
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<!-- bootstrap cdn files for the Tables and other contents -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Link the External Css here And please see name Its a Styles.css -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="p">
<!-- NavBar for the Logo and the title -->
<div class="nav">
<div class="logo">
<span>LOGO</span>
</div>
<center><span class="hr">HR & Admin dashbord</span></center>
<hr>
</div>
<hr>
<!-- Logo and the title navbar close here -->
<!-- Main navbar that contains home recruittment Should Be start here -->
<nav class="shadow p-3 mb-5 bg-white rounded">
<div class="gri">
<div class="item1">
<a href="#"> HOME</a>
</div>
<div class="item2">
<a href="#"> EMPLOYEE MASTER </a>
</div>
<div class="item3">
<div class="dropdown">
<span> <a href="#"> TRAINNING</a></span>
<div class="dropdown-content">
<p>First</p>
<p>Secound</p>
<p>Third</p>
</div>
</div>
</div>
<div class="item4">
<a href="#"> PMS </a>
</div>
<div class="item5">
<a href="#"> WELFARE </a>
</div>
<div class="item6">
</div>
<div class="item7">
<a href="#"> COMPANY </a>
</div>
</nav>
</div>
</div>
<!-- Main navbar Close here -->
<div class="title">
<center>
<h2>REQUISITION
<hr style="border-bottom: 2px solid#3f51b5 ; width: 50px;">
</h2>
</center>
</div>
<br>
<div class="container">
<div class="row justify-content-md-start">
<div class="col-md"><button class="btn btn-primary btn-lg btn-block">NEW</button></div>
<div class="col-md"><button class="btn btn-primary btn-lg btn-block">MODIFY</button></div>
<div class="col-md"><button class="btn btn-primary btn-lg btn-block">DELETE</button></div>
<div class="col-md"><button class="btn btn-primary btn-lg btn-block">OPEN</button></div>
</div>
</div>
<br>
<hr style="border-bottom: 1px solid#3f51b5; width: 500px;">
<br>
<br><br>
<div class="container">
<div class="row justify-content-md-start">
<div class="col-md-1">
From :
</div>
<div class="col-md-2">
Department
</div>
<div class="col-md-3">
<div class="dropdown">
<button class="dropbtn">Select Department</button>
<div class="dropdown-content">
<a href="#">PURCHASE DEPARTMENT</a>
<a href="#">SALES</a>
<a href="#">MANUFACTURING</a>
</div>
</div>
</div>
<div class="col-md-3" id=cdate>
</div>
<script>
n = new Date();
y = n.getFullYear();
m = n.getMonth() + 1;
d = n.getDate();
document.getElementById("cdate").innerHTML ="Date: "+ m + "/" + d + "/" + y;
</script>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-4">
<label>Requisition for the Post / Designation:</label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-4">
<label>Reason for Appoinment: </label>
</div>
<div class="col-md-4">
<select class="custom-select" >
<option> Replacement </option>
<option> New Position </option>
<option> Additional Workload </option>
</select>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-4">
<label>Qualification : </label>
</div>
<div class="col-md-8">
<div class="row justify-content-md-start">
<div class="col-md-6">
<label class="text-md-center"> Minimum </label>
</div>
<div class="col-md-6">
<label class="text-md-center"> Preferred</label>
</div>
</div>
<div class="row justify-content-md-start">
<div class="col-md-6">
<input type="text" class="form-control" >
</div>
<div class="col-md-6">
<input type="text" class="form-control" >
</div>
</div>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-4">
<label>Experience : </label>
</div>
<div class="col-md-8">
<div class="row justify-content-md-start">
<div class="col-md-6">
<label class="text-md-center"> Minimum </label>
</div>
<div class="col-md-6">
<label class="text-md-center"> Maximum</label>
</div>
</div>
<div class="row justify-content-md-start">
<div class="col-md-6">
<input type="text" class="form-control" >
</div>
<div class="col-md-6">
<input type="text" class="form-control" >
</div>
</div>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-4">
<div class="row justify-content-md-start">
<label class="text-md-center"> Skill Required :</label>
</div>
<div class="row justify-content-md-start">
<textarea class="form-control" rows="3"></textarea>
</div>
<br>
<div class="row justify-content-md-start">
<label class="text-md-center"> Any Special Consideration :</label>
</div>
<div class="row justify-content-md-start">
<textarea class="form-control" rows="3"></textarea>
</div>
</div>
<div class="col-md-3">
<br><br>
<table class="table" border="1" width="auto">
<tr>
<th colspan="2">SKILL DETAILS</th>
<th width='15px'>REQUIRED</th>
<th width='15px'>ACTUAL</th width=''>
</tr>
<tr >
<th rowspan="3">Managerial Skill</th>
<td>Communication Skill</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Leadership Skill</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Teamwork</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<th rowspan="7">Preffered Skill</th>
<td>Vendor Selection & Assessment
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Bought out items costing
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Project Management
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Press tools/ casting & machining
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Inventory Management
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>Details on Taxation
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>ERP/SAP Knowledge
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<th rowspan=3>System Requirement</th>
<td>ISO 9001:2015
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>5S (House Keeping)
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
<tr>
<td>EMS 14001:2015
</td>
<td><input type="number" name="" id=""></td>
<td><input type="number" name="" id=""></td>
</tr>
</table>
</div>
</div>
<br><br>
<div class="row justify-content-md-around">
<div class="col-3">
<a href="print.html"><button class="btn btn-primary btn-lg btn-block">Submit</button></a>
</div>
<div class="col-3">
<button class="btn btn-danger btn-lg btn-block">Cancel</button>
</div>
</div>
</div>
<div style="margin-bottom: 200px;">
</div>