forked from sarveshpathak139/HRMIS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Master Template.php
310 lines (306 loc) · 12.6 KB
/
Master Template.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!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>
<?php
include 'adminnavbar.php';
?>
<div class="title">
<center>
<h2>EMPLOYEE MASTER
<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">SEARCH</button></div>
<div class="col-md"><button class="btn btn-primary btn-lg btn-block">ADD</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">UPDATE</button></div>
</div>
</div>
<br><br><br>
<form action="#" method="POST">
<div class="container">
<div style="margin-bottom: 100px; border: 1px solid lightblue; padding: 50px;">
<div class="row justify-content-md-start" >
<div class="col-md-2">
<label>EMPLOYEE NO </label>
</div>
<div class="col-md-3">
<input type="text" name="emp_no" id="emp_no" class="form-control">
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> User Type: </label>
</div>
<select name="user_type" id="userr_type" class="form-control">
<option value="Employee" selected>Employee</option>
<option value="HoD">HoD</option>
<option value="SuperHoD">SuperHoD</option>
<option value="MD">MD</option>
</select>
</div>
</div>
<div class="container">
<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> PERSONAL INFORMATION :</label></h4>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-9">
<div class="row justify-content-md-start">
<div class="col-md-5">
<label> Full Name : (In Block Letters)</label>
</div>
<div class="col-md-7">
<input type="text" name="full_name" id="full_name" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Gender : </label>
</div>
<div class="col-md-4">
<select name="gender" id="gender" class="form-control">
<option value="" selected>Male</option>
<option value="">Female</option>
<option value="">Other</option>
</select>
</div>
<div class="col-md-3">
<label> Marital Status </label>
</div>
<div class="col-md-3">
<input type="text" name="marital_status" id="marital_status" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> DOB : </label>
</div>
<div class="col-md-4">
<input type="date" name="dob" id="dob" class="form-control" >
</div>
<div class="col-md-2">
<label> PAN : </label>
</div>
<div class="col-md-4">
<input type="text" name="PAN" id="PAN" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-5">
<label> Blood Group :</label>
</div>
<div class="col-md-7">
<input type="text" class="form-control" name="blood" id="blood">
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-5">
<label> Personal Email :</label>
</div>
<div class="col-md-7">
<input type="email" class="form-control" name="personal_email" id="personal_email">
</div>
</div>
</div>
<div class="col-md-3" style="border: lightblue solid 1px;">
<div class="row justify-content-md-start">
<div class="col-md-12">
<button class="btn btn-outline-primary btn-sm btn-block" style="margin-top: 100%;">UPLOAD</button>
</div>
</div>
</div>
<div class="col-md-9">
<br>
<div class="row justify-content-md-start">
<div class="col-md-6">
<label> Correspondence Address :</label>
</div>
<div class="col-md-6">
<label> Permanent Address :</label>
</div>
</div>
<div class="row justify-content-md-start">
<div class="col-md-6">
<textarea class="form-control" name="correspondence_add" id="correspondence_add" rows="3"></textarea>
</div>
<div class="col-md-6">
<textarea class="form-control" name="permanent_add" id="permanent_add" rows="3"></textarea>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Pin No : </label>
</div>
<div class="col-md-4">
<input type="text" name="correspondence_add_pin" id="correspondence_add_pin" class="form-control" >
</div>
<div class="col-md-2">
<label> Pin No : </label>
</div>
<div class="col-md-4">
<input type="text" name="permanent_add_pin" id="permanent_add_pin" class="form-control" >
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> Mobile No : </label>
</div>
<div class="col-md-4">
<input type="number" name="mob_no" id="mob_no" class="form-control" >
</div>
<div class="col-md-2">
<label> Contact No : </label>
</div>
<div class="col-md-4">
<input type="number" name="contact" id="contact" class="form-control" >
</div>
</div>
</div>
</div>
</div>
<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> JOB DETAILS :</label></h4>
</div>
</div>
<br>
<div class="row justify-content-md-start">
<div class="col-md-2">
<label> D.O.J : </label>
</div>
<div class="col-md-4">
<input type="date" class="form-control" >
</div>
<div class="col-md-2">
<label> Department : </label>
</div>
<div class="col-md-4">
<select name="department" id="department">
<option value="" selected>HR</option>
</select>
</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="designation" id="designation" class="form-control">
<option value="" selected>Assitant Manager</option>
</select>
</div>
<div class="col-md-2">
<label> Grade : </label>
</div>
<div class="col-md-4">
<select name="grade" id="grade" class="form-control">
<option value="">E1</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="location" id="location">
</select>
</div>
<div class="col-md-2">
<label> Employee Type : </label>
</div>
<div class="col-md-4">
<input type="text" name="emp_type" id="emp_type" 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" name="emp_status" id="emp_status" class="form-control" >
</div>
<div class="col-md-2">
<label> Employee Reporting to : </label>
</div>
<div class="col-md-4">
<input type="text" name="emp_repoting_to" id="emp_repoting_to" 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" name="education" id="education">
</div>
<div class="col-md-2">
<label> Previous Experience : </label>
</div>
<div class="col-md-4">
<input type="number" class="form-control" name="prev_exp" id="prev_exp">
</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" name="resigned_date" id="resigned_date">
</div>
<div class="col-md-2">
<label> Last Working Date : </label>
</div>
<div class="col-md-4">
<input type="date" class="form-control" name="last_working_date" id="last_working_date">
</div>
</div>
<br><br>
<div class="row justify-content-md-around">
<div class="col-3">
<input type="submit" name="submit" id="submit" class="btn btn-primary btn-lg btn-block">Submit</button>
</div>
<div class="col-3">
<button class="btn btn-danger btn-lg btn-block">Cancel</button>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>