forked from sarveshpathak139/HRMIS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
skillmatrix.php
293 lines (227 loc) · 8.39 KB
/
skillmatrix.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
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
<!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>HOD DASHBOARD</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>
<?php
include 'hodnavbar.php';
?> <div style="margin-bottom: 100px; border: 1px solid lightblue; padding: 50px;">
<div class="row justify-content-md-start">
<div class="col-md-8">
<h4><label>Skill Matrix DETAILS :</label></h4>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Employee name : </label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
<div class="col-md-2">
<label> Employee number : </label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
<div class="col-md-2">
<label> D.O.J : </label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
<div class="col-md-2">
<label> Department : </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-2">
<label> Designation:</label>
</div>
<div class="col-md-4">
<select name="" id="" class="form-control">
<option value="" selected>Assitant Manager</option>
<option value="">Manager</option>
<option value="">Devloper</option>
<option value="">senior Manager</option>
</select>
</div>
<div class="col-md-2">
<label> Grade : </label>
</div>
<div class="col-md-4">
<select name="" id="" class="form-control">
<option value="">E1</option>
<option value="">E2</option>
<option value="">D1</option>
<option value="">M1</option>
</select>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Location : </label>
</div>
<div class="col-md-4">
<select name="" id="">
<option value="">Pune</option>
<option value="">Kolhapur</option>
</select>
</div>
<div class="col-md-2">
<label> Employee Type : </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-2">
<label> Employee Status : </label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
<div class="col-md-2">
<label> Employee Reporting to : </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-2">
<label> Education : </label>
</div>
<div class="col-md-4">
<input type="text" class="form-control" >
</div>
<div class="col-md-2">
<label> Previous Experience : </label>
</div>
<div class="col-md-4">
<input type="number" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Resigned Date : </label>
</div>
<div class="col-md-4">
<input type="date" class="form-control" >
</div>
<div class="col-md-2">
<label> Last Working Date : </label>
</div>
<div class="col-md-4">
<input type="date" class="form-control" >
</div>
</div>
<table class="table" border="1">
<tr>
<th colspan="2">SKILL DETAILS</th>
<th>REQUIRED</th>
<th>ACTUAL</th>
</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>
<center>
<input type="button" value="Submit" name="Submit" class="btn btn-primary">
</center>
<html>