-
Notifications
You must be signed in to change notification settings - Fork 0
/
pms.html
1324 lines (1290 loc) · 59.6 KB
/
pms.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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ESS | PMS</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="MobileOptimized" content="320">
<!--Start Style -->
<link rel="stylesheet" type="text/css" href="./css/fonts.css">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!-- Favicon Link -->
<link rel="stylesheet" type="text/css" href="./css/other.css">
<link rel="stylesheet" type="text/css" id="theme-change" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/custom-style.css">
</head>
<body class="mini-sidebar">
<div class="loader" style="display: none;">
<div class="spinner" style="display: none;">
<img src="./SplashDash_files/loader.gif" alt="">
</div>
</div>
<!-- Main Body -->
<div class="page-wrapper">
<!-- Header Start -->
<header class="header-wrapper main-header">
<div class="header-inner-wrapper">
<div class="header-right">
<div class="serch-wrapper">
<form>
<input type="text" placeholder="Search Here...">
</form>
<a class="search-close" href="javascript:void(0);"><span class="icofont-close-line"></span></a>
</div>
<div class="header-left ">
<div class="header-links d-lg-none">
<a href="javascript:void(0);" class="toggle-btn">
<span></span>
</a>
</div>
<div class="header-links search-link">
<a class="search-toggle" href="javascript:void(0);">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 56.966 56.966" style="enable-background:new 0 0 56.966 56.966;" xml:space="preserve">
<path d="M55.146,51.887L41.588,37.786c3.486-4.144,5.396-9.358,5.396-14.786c0-12.682-10.318-23-23-23s-23,10.318-23,23
s10.318,23,23,23c4.761,0,9.298-1.436,13.177-4.162l13.661,14.208c0.571,0.593,1.339,0.92,2.162,0.92
c0.779,0,1.518-0.297,2.079-0.837C56.255,54.982,56.293,53.08,55.146,51.887z M23.984,6c9.374,0,17,7.626,17,17s-7.626,17-17,17
s-17-7.626-17-17S14.61,6,23.984,6z"></path>
</svg>
</a>
</div>
<div class="d-none d-md-block d-lg-block"><h4>VNR Seeds Private Limited India</h4></div>
</div>
<div class="header-controls">
<div class="setting-wrapper header-links d-none">
<a href="javascript:void(0);" class="setting-info">
<span class="header-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M18.777,12.289 L17.557,12.493 C17.439,12.854 17.287,13.220 17.105,13.585 L17.825,14.599 C18.236,15.178 18.170,15.964 17.668,16.467 L16.454,17.683 C15.960,18.177 15.139,18.238 14.588,17.838 L13.583,17.119 C13.234,17.294 12.869,17.446 12.491,17.571 L12.284,18.795 C12.167,19.497 11.566,20.006 10.855,20.006 L9.137,20.006 C8.426,20.006 7.825,19.497 7.708,18.794 L7.504,17.571 C7.138,17.450 6.786,17.305 6.455,17.139 L5.431,17.869 C4.875,18.268 4.060,18.202 3.570,17.712 L2.356,16.496 C1.853,15.995 1.787,15.209 2.200,14.627 L2.915,13.630 C2.735,13.279 2.581,12.913 2.456,12.540 L1.218,12.329 C0.518,12.212 0.009,11.609 0.009,10.898 L0.009,9.180 C0.009,8.468 0.518,7.865 1.219,7.748 L2.422,7.545 C2.545,7.164 2.694,6.797 2.867,6.447 L2.139,5.421 C1.727,4.842 1.793,4.057 2.295,3.553 L3.513,2.337 C3.991,1.846 4.818,1.777 5.380,2.181 L6.376,2.901 C6.725,2.721 7.091,2.566 7.464,2.441 L7.675,1.200 C7.793,0.498 8.394,-0.011 9.104,-0.011 L10.818,-0.011 C11.528,-0.011 12.130,0.498 12.247,1.201 L12.451,2.407 C12.833,2.530 13.214,2.687 13.591,2.877 L14.602,2.155 C15.157,1.757 15.973,1.822 16.463,2.313 L17.676,3.528 C18.180,4.028 18.246,4.814 17.833,5.396 L17.112,6.405 C17.288,6.754 17.440,7.121 17.564,7.500 L18.786,7.707 C19.492,7.825 19.997,8.429 19.986,9.143 L19.986,10.856 C19.986,11.569 19.478,12.172 18.777,12.289 ZM16.815,8.984 C16.507,8.935 16.256,8.705 16.180,8.397 C16.030,7.816 15.800,7.262 15.498,6.755 C15.339,6.480 15.353,6.140 15.536,5.887 L16.472,4.568 L15.421,3.514 L14.111,4.458 C13.855,4.640 13.515,4.654 13.248,4.495 C12.722,4.184 12.157,3.952 11.566,3.803 C11.261,3.727 11.030,3.475 10.977,3.162 L10.711,1.574 L9.227,1.574 L8.953,3.187 C8.902,3.490 8.675,3.739 8.375,3.822 C7.801,3.971 7.251,4.203 6.735,4.513 C6.463,4.675 6.124,4.660 5.866,4.481 L4.555,3.543 L3.503,4.595 L4.451,5.930 C4.632,6.183 4.648,6.521 4.491,6.790 C4.193,7.297 3.967,7.852 3.819,8.439 C3.744,8.743 3.494,8.975 3.181,9.028 L1.596,9.295 L1.596,10.782 L3.205,11.057 C3.508,11.108 3.758,11.336 3.839,11.636 C3.987,12.210 4.219,12.762 4.530,13.280 C4.690,13.552 4.676,13.893 4.496,14.150 L3.561,15.465 L4.612,16.518 L5.943,15.569 C6.170,15.399 6.533,15.375 6.799,15.528 C7.309,15.822 7.851,16.044 8.408,16.189 C8.708,16.265 8.937,16.514 8.990,16.825 L9.257,18.425 L10.740,18.425 L11.010,16.825 C11.057,16.516 11.287,16.265 11.594,16.189 C12.176,16.037 12.729,15.807 13.234,15.505 C13.509,15.344 13.850,15.360 14.101,15.542 L15.418,16.482 L16.469,15.428 L15.530,14.102 C15.348,13.843 15.334,13.512 15.494,13.239 C15.797,12.728 16.027,12.174 16.176,11.591 C16.253,11.289 16.503,11.060 16.811,11.007 L18.408,10.740 L18.413,9.255 L16.815,8.984 ZM10.000,14.453 C7.547,14.453 5.550,12.454 5.550,9.996 C5.550,7.537 7.547,5.537 10.000,5.537 C12.454,5.537 14.449,7.537 14.449,9.996 C14.449,12.454 12.454,14.453 10.000,14.453 ZM10.000,7.127 C8.422,7.127 7.137,8.413 7.137,9.996 C7.137,11.577 8.422,12.864 10.000,12.864 C11.579,12.864 12.863,11.577 12.863,9.996 C12.863,8.413 11.579,7.127 10.000,7.127 Z" class="cls-1"></path>
</svg>
</span>
</a>
</div>
<div class="notification-wrapper header-links">
<a href="javascript:void(0);" class="notification-info">
<span class="header-icon">
<svg enable-background="new 0 0 512 512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="m450.201 407.453c-1.505-.977-12.832-8.912-24.174-32.917-20.829-44.082-25.201-106.18-25.201-150.511 0-.193-.004-.384-.011-.576-.227-58.589-35.31-109.095-85.514-131.756v-34.657c0-31.45-25.544-57.036-56.942-57.036h-4.719c-31.398 0-56.942 25.586-56.942 57.036v34.655c-50.372 22.734-85.525 73.498-85.525 132.334 0 44.331-4.372 106.428-25.201 150.511-11.341 24.004-22.668 31.939-24.174 32.917-6.342 2.935-9.469 9.715-8.01 16.586 1.473 6.939 7.959 11.723 15.042 11.723h109.947c.614 42.141 35.008 76.238 77.223 76.238s76.609-34.097 77.223-76.238h109.947c7.082 0 13.569-4.784 15.042-11.723 1.457-6.871-1.669-13.652-8.011-16.586zm-223.502-350.417c0-14.881 12.086-26.987 26.942-26.987h4.719c14.856 0 26.942 12.106 26.942 26.987v24.917c-9.468-1.957-19.269-2.987-29.306-2.987-10.034 0-19.832 1.029-29.296 2.984v-24.914zm29.301 424.915c-25.673 0-46.614-20.617-47.223-46.188h94.445c-.608 25.57-21.549 46.188-47.222 46.188zm60.4-76.239c-.003 0-213.385 0-213.385 0 2.595-4.044 5.236-8.623 7.861-13.798 20.104-39.643 30.298-96.129 30.298-167.889 0-63.417 51.509-115.01 114.821-115.01s114.821 51.593 114.821 115.06c0 .185.003.369.01.553.057 71.472 10.25 127.755 30.298 167.286 2.625 5.176 5.267 9.754 7.861 13.798z"></path></svg>
</span>
<span class="count-notification"></span>
</a>
<div class="recent-notification">
<div class="drop-down-header">
<h4>All Notification</h4>
<p>You have 6 new notifications</p>
</div>
<ul>
<li>
<a href="javascript:void(0);">
<h5><i class="fas fa-exclamation-circle mr-2"></i>Storage Full</h5>
<p>Lorem ipsum dolor sit amet, consectetuer.</p>
</a>
</li>
<li>
<a href="javascript:void(0);">
<h5><i class="far fa-envelope mr-2"></i>New Membership</h5>
<p>Lorem ipsum dolor sit amet, consectetuer.</p>
</a>
</li>
</ul>
<div class="drop-down-footer">
<a href="javascript:void(0);" class="btn sm-btn">
View All
</a>
</div>
</div>
</div>
<div class="user-info-wrapper header-links">
<a href="javascript:void(0);" class="user-info">
<img src="./images/user.jpg" alt="" class="user-img">
<div class="blink-animation">
<span class="blink-circle t-present-b"></span>
<span class="main-circle t-present"></span>
</div>
</a>
<div class="user-info-box">
<div class="drop-down-header">
<h4>Rohit Kumar</h4>
<p>Executive IT</p>
<p>Emp. Code - 1254</p>
</div>
<ul>
<li>
<a href="profile-1.html">
<i class="far fa-user"></i> Profile
</a>
</li>
<li>
<a href="#">
<i class="fas fa-cog"></i> Change Passward
</a>
</li>
<li>
<a href="login.html">
<i class="fas fa-sign-out-alt"></i> Logout
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Sidebar Start -->
<aside class="sidebar-wrapper">
<div class="logo-wrapper">
<a href="#" class="admin-logo">
<img src="./images/mini-logo.png" alt="" class="sp_logo">
<img src="./images/mini-logo.png" alt="" class="sp_mini_logo">
</a>
</div>
<div class="side-menu-wrap active">
<ul class="main-menu in">
<li>
<a href="index.html" title="Home">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg><br>
<span class="menu-text-c">Home</span>
</span>
</a>
</li>
<li>
<a href="reporting-index.html" title="My Team">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg><br>
<span class="menu-text-c">My Team</span>
</span>
</a>
</li>
<li>
<a href="leave.html" title="Attendance">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-calendar"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg><br>
<span class="menu-text-c">
Attendance
</span>
</span>
</a>
</li>
<li>
<a href="salary.html" title="Salary">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-printer"><polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect></svg><br>
<span class="menu-text-c">
Salary
</span>
</span>
</a>
</li>
<li class="active">
<a href="pms-info.html" title="PMS" class="active">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-grid nav-icon"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg><br>
<span class="menu-text-c">
PMS
</span>
</span>
</a>
</li>
<li>
<a href="assets.html" title="Assets">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers"><polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline></svg><br>
<span class="menu-text-c">
Assets
</span>
</span>
</a>
</li>
<li>
<a href="query.html" title="Query">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers"><polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline></svg><br>
<span class="menu-text-c">
Query
</span>
</span>
</a>
</li>
<li class="d-none">
<a href="profile-1.html">
<span class="icon-menu feather-icon text-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle></svg><br>
<span class="menu-text-c">
Profile
</span>
</span>
</a>
</li>
<li>
<a href="login.html" title="Logout">
<span class="icon-menu feather-icon text-center">
<i style="font-size:15px;" class="fas fa-sign-out-alt"></i><br>
<span class="menu-text-c">
Logout
</span>
</span>
</a>
</li>
<li>
<a href="changes.html">
<span class="icon-menu feather-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-paperclip"><path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path></svg><br>
<span class="menu-text-c">
Changes
</span>
</span>
</a>
</li>
<!--<li class="active-li has-sub-menu">
<a href="javascript:void(0);">
<span class="icon-menu feather-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers"><polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline></svg>
</span>
<span class="menu-text">
Assets
</span>
</a>
<ul class="sub-menu show-submenu">
<li>
<a href="#">
<span class="icon-dash">
</span>
<span class="menu-text">
Starter
</span>
</a>
</li>
</ul>
</li> -->
</ul>
</div>
</aside>
<!-- Container Start -->
<div class="page-wrapper">
<div class="main-content">
<!-- Page Title Start -->
<div class="row">
<div class="colxl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="page-title-wrapper">
<div class="breadcrumb-list">
<ul>
<li class="breadcrumb-link">
<a href="#"><i class="fas fa-home mr-2"></i>Home</a>
</li>
<li class="breadcrumb-link active">Performance Management System - 2024 </li>
</ul>
</div>
</div>
</div>
</div>
<!-- Dashboard Start -->
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
<div class=" pms-bpx">
<a href="pms.html" class="mb-0 sm-btn btn pms-btn-active" title="" data-original-title="My KRA">Employee</a>
<a href="appraiser.html" class="mb-0 sm-btn btn pms-btn" title="" data-original-title="Appraiser">Appraiser</a>
<a href="reviewer.html" class="mb-0 sm-btn btn pms-btn" title="" data-original-title="Reviewer">Reviewer</a>
<a href="hod.html" class="mb-0 sm-btn btn pms-btn" title="" data-original-title="HOD">HOD</a>
<a href="management.html" class="mb-0 sm-btn btn pms-btn" title="" data-original-title="Management">Management</a>
</div>
</div>
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
<div class="card">
<div class="card-content">
<div class="card-body">
<div class="row pms-emp-details">
<div class="col-md-4"><b>Assessment Year: <span>KRA 2024</span></b></div>
<div class="col-md-4"><b>Total VNR Experience: <span>3 Year 8 Month</span></b></div>
<div class="col-md-4"><b>Function: <span>SUPPORT SERVICES</span></b></div>
<div class="col-md-4 border-0"><b>Appraiser: <span>Mr. Ajay Kumar Dewangan</span></b></div>
<div class="col-md-4 border-0"><b>Reviewer: <span>Mr. Arvind Kumar Agrawal</span></b></div>
<div class="col-md-4 border-0"><b>HOD: <span>Mr. Arvind Kumar Agrawal</span></b></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
<div class="mfh-machine-profile">
<ul class="nav nav-tabs" id="myTab1" role="tablist">
<li class="nav-item">
<a style="color: #8b8989;padding-top:13px !important;" class="nav-link pt-4 active" id="profile-tab20" data-bs-toggle="tab" href="#KraTab" role="tab" aria-controls="KraTab" aria-selected="false">Current Year KRA - 2024 </a>
</li>
<li class="nav-item">
<a style="color: #8b8989;padding-top:13px !important;" class="nav-link pt-4 " id="Appraisal-tab20" data-bs-toggle="tab" href="#Appraisal" role="tab" aria-controls="Appraisal" aria-selected="false">Appraisal 2024</a>
</li>
</ul>
<div class="tab-content ad-content2" id="myTabContent2">
<div class="tab-pane fade active show" id="KraTab" role="tabpanel">
<div class="float-end" style="margin-top:-45px;">
<ul class="kra-btns">
<li><a class="effect-btn btn btn-success squer-btn sm-btn">Save as Draft</a></li>
<li><a class="effect-btn btn btn-light squer-btn sm-btn">Final Submit <i class="fas fa-check-circle mr-2"></i></a></li>
<li class="mt-1"><a class="oldkrabtn">Old KRA <i class="fas fa-tasks mr-2"></i></a></li>
<li class="mt-1"><a class="mykraedit">Edit <i class="fas fa-edit mr-2"></i></a></li>
<li class="mt-1"><a class="mykra">View <i class="fas fa-eye mr-2"></i></a></li>
<li class="mt-1"><a>Print <i class="fas fa-print mr-2"></i></a></li>
</ul>
</div>
<div class="row">
<div class="col-md-12" id="oldkrabox" style="display:none;">
<div class="card">
<div class="card-header">
<h5 class="float-start mt-2"><b>Old KRA 2023</b></h5>
<div class="float-end"><a class="effect-btn btn btn-success squer-btn sm-btn">Copy to Current Year Assessment</a>
<a class="effect-btn btn btn-secondary squer-btn sm-btn oldkraclose">Cancel</a></div>
</div>
<div class="card-body table-responsive dd-flex align-items-center">
<table class="table table-pad">
<thead>
<tr>
<th></th>
<th>SN.</th>
<th>KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" /></td>
<td><b>1.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td><b>2.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td><b>3.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td><b>4.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td><i class="fas fa-plus-circle mr-2"></i><b>5.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr >
<td colspan="10">
<table class="table" Style="background-color:#ECECEC;">
<thead >
<tr>
<th>SN.</th>
<th>Sub KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>1.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><b>2.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="card">
<div class="card-header">
<div style="float:left;width:100%;">
<h5 class="float-start"><b>Form - A (KRA)</b></h5>
</div>
</div>
<div class="card-body table-responsive dd-flex align-items-center">
<table class="table table-pad" id="mykrabox">
<thead>
<tr>
<th>SN.</th>
<th>KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>1.</b></td>
<td> There are many variations of passages of Lorem Ipsum available, but the majority have suffered.</td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><b>2.</b></td>
<td>There are many variations of passages of Lorem Ipsum available, but the majority have suffered. </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><b>3.</b></td>
<td>There are many variations of passages of Lorem Ipsum available, but the majority have suffered. </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><b>4.</b></td>
<td>There are many variations of passages of Lorem Ipsum available, but the majority have suffered. </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><i class="fas fa-plus-circle mr-2"></i><b>5.</b></td>
<td>There are many variations of passages of Lorem Ipsum available, but the majority have suffered. </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td colspan="10">
<table class="table" Style="background-color:#ECECEC;">
<thead >
<tr>
<th>SN.</th>
<th>Sub KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>1.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
<tr>
<td><b>2.</b></td>
<td>test </td>
<td>twst</td>
<td>Process</td>
<td>Days</td>
<td>45.5</td>
<td>Logic 01</td>
<td>Quarterly</td>
<td>100</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="table table-pad" id="mykraeditbox" style="display:none;">
<thead>
<tr>
<th>SN.</th>
<th>KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="subkrabtn"><i class="fas fa-plus-circle mr-2"></i></a><b>1.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><a class="subkrabtn"><i class="fas fa-plus-circle mr-2"></i></a> <b>2.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td> <a class="subkrabtn"><i class="fas fa-plus-circle mr-2"></i></a> <b>3.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><a class="subkrabtn"><i class="fas fa-plus-circle mr-2"></i></a> <b>4.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><a class="subkrabtn"><i class="fas fa-plus-circle mr-2"></i></a> <b>5.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr style="display:none;" id="subkrabtnbox">
<td colspan="9">
<table class="table" Style="background-color:#ECECEC;">
<thead >
<tr>
<th>SN.</th>
<th>Sub KRA/Goals</th>
<th>Description</th>
<th>Measure</th>
<th>Unit</th>
<th>Weightage</th>
<th>Logic</th>
<th>Period</th>
<th>Target</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>1.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><b>2.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><b>3.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Days</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>45.5</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Logic 01</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<select>
<option>Quarterly</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>
<input class="form-control" style="width:50px;font-weight: bold;" type="text" >
</td>
</tr>
<tr>
<td><b>4.</b></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td><input class="form-control" style="min-width: 300px;" type="text" ></td>
<td>
<select>
<option>Process</option>
<option>1</option>
<option>1</option>
</select>
</td>
<td>