-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dashboard.html
1141 lines (1069 loc) · 56.3 KB
/
Dashboard.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="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Dashboard</title>
<link rel="stylesheet" href="./CSS/Dashboard.css">
</head>
<body>
<!-- Navigation bar -->
<div id="nav-bar">
<!-- Div -> Ums Logo -->
<div id="ums-logo">
<img src="./Resource/Image/UmsLogo.jpeg" alt="ums-logo" height="80">
</div>
<!-- Div -> Nav-link -->
<div id="nav-link">
<div class="drop-down">
<button class="dropbtn">Academics ˅</button>
<div class="dropdown-content">
<a target="_blank" href="./assignment_upload.html">Assignment Upload </a>
<a target="_blank" href="./assignment.html">Assignment Download</a>
<a target="_blank" href="./assignment_upload.html">Practical Upload</a>
</div>
</div>
<div class="drop-down">
<button class="dropbtn">Administrative ˅</button>
<div class="dropdown-content">
<a target="_blank" href="https://ums.lpu.in/lpuums/frmSummerTermHostelBooking.aspx">Hostel
Booking</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmStudentHostelLeaveApplicationTermWise.aspx">Hostel Leave
Application</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmStudentScholarshipCampRegistration.aspx">Camp
Registration</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmHostelSeaterChangePreference.aspx">Vaccination
Verification</a>
</div>
</div>
<div class="drop-down">
<button class="dropbtn">Student Services ˅</button>
<div class="dropdown-content">
<a target="_blank" href="https://ums.lpu.in/lpuums/frmDoctorAppointmnt.aspx">Doctor Appointment</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmRegistartionOrgDrive.aspx">Organization
Registration</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmMtsMessage.aspx">Log Request</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmPartTimeJobs.aspx">Part-time Job
Registration</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmDSAStudentPolicyView.aspx">Policies</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmPressReleaseRequestByStudent.aspx">Press
Release Request</a>
</div>
</div>
<div class="drop-down">
<button class="dropbtn">Important Links ˅</button>
<div class="dropdown-content">
<a target="_blank" href="https://ums.lpu.in/lpuums/frmchangepassword.aspx">Change UMS Password</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmStudentFeedbackSurvey.aspx">Course Feedback
</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmLostAndFoundReport.aspx">View Lost&Found</a>
</div>
</div>
</div>
<!-- Div -> UserInfo -->
<div id="user-info">
<div id="user-details">
<span id="name">Harsh Vidit</span>
<span id="reg">RegNo-12104689 || K21GP</span>
<span id="course">B.Tech CSE (P132)</span>
</div>
<div id="user-logo">
<img id="user-img" src="./Resource/Image/userLogo.jpg" alt="user-logo">
</div>
</div>
</div>
<!-- Body Block -->
<div id="body-block">
<!-- Access Bar -->
<div id="access-bar">
<div id="filler">
<div class="access-element">
<a href="./Dashboard.html" target="_blank">
<img class="access-img" src="./Resource/Image/DashBoardLogo.jpeg" alt="Dashboard">
</a>
</div>
<div class="access-element">
<a href="https://ums.lpu.in/lpuums" target="_blank">
<img class="access-img" src="./Resource/Image/UmsHomeLogo.jpeg" alt="UmsHome">
</a>
</div>
<div class="access-element">
<a href="https://lpulive.lpu.in/" target="_blank">
<img class="access-img" src="./Resource/Image/LpuLiveLogo.jpeg" alt="LpuLive">
</a>
</div>
<div class="access-element">
<a href="https://play.google.com/store/apps/details?id=ums.lovely.university&hl=en_IN&gl=US"
target="_blank">
<img class="access-img" src="./Resource/Image/LpuTouchLogo.jpeg" alt="LpuTouch">
</a>
</div>
<div class="access-element">
<a href="https://myclass.lpu.in/" target="_blank">
<img class="access-img" src="./Resource/Image/MyClassLogo.jpeg" alt="MyClass">
</a>
</div>
<div class="access-element">
<a href="https://ums.lpu.in/lpuums/openapp.aspx?from=ums&toApp=yourdost" target="_blank">
<img class="access-img" src="./Resource/Image/YourDostLogo.jpeg" alt="YourDost">
</a>
</div>
</div>
</div>
<!-- Body -->
<div id="body-content">
<!-- Heading Bar -->
<div id="Academics">
<div class="divTitle">
<b>Academics</b>
</div>
<div id="Button-Bar">
<a href="https://ums.lpu.in/lpuums/frmMtsMessage.aspx">
<button class="Button">RMS</button>
</a>
<a href="https://ums.lpu.in/lpuums/frmStudentsAcademicCalendar.aspx">
<button class="Button">Academic Calender</button>
</a>
<a href="https://ums.lpu.in/lpuums/EmergencyNumbers.html">
<button class="Button">Emergency Number</button>
</a>
<a href="https://ums.lpu.in/lpuums/frmExternalCertificates.aspx">
<button class="Button">Certificate Request</button>
</a>
<a href="https://ums.lpu.in/lpuums/frmStudentBankLoanDocument.aspx">
<button class="Button">Loan Letter</button>
</a>
<a href="https://ums.lpu.in/lpuums/frmPartTimeJobs.aspx">
<button class="Button">Part-time Job Application</button>
</a>
<a href="mailto:[email protected]">
<button class="Button" style="background-color: green;">Mail Us</button>
</a>
</div>
</div>
<div class="divBreak"></div>
<div id="academic-content">
<div id="course-container">
<div class="container-title">
Courses
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
CSE326: INTERNET PROGRAMMING LABORATORY
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CSE326:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CSE326:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
CHE110: ENVIROMENTAL STUDIES
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CHE110:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CHE110:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
CSE202: OBJECT ORIENTED PROGRAMMING
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CSE202:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=CSE202:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
MEC107: BASIC ENGINEERING MECHANICS
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=MEC107:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=MEC107:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
ECE213: DIGITAL ELECTRONICS
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=ECE213:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=ECE213:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
ECE216: DIGITAL ELECTRONICS LABORATORY
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=ECE216:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=ECE216:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
PEL130: ADVANCED COMMUNICATION SKILLS-I
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=PEL130:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=PEL130:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
<div class="course-list">
<div class="list-left">
<div class="outer-circle">
<div class="inner-circle">
100%
</div>
</div>
<div class="course-name">
MTH166: DIFFERENTIAL EQUATIONS AND VECTOR CALCULUS
</div>
</div>
<div class="list-right">
<div class="ip">
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=MTH166:21222&Type=IP">
<button class="ip-button">IP</button>
</a>
<a target="_blank"
href="https://ums.lpu.in/lpuums/frmCourseSyllabusIPDownload.aspx?CT=MTH166:21222&Type=Syb">
<button class="ip-button">Syllabus</button>
</a>
<a target="_blank" href="./Timetable.html">
<button class="ip-button">TimeTable</button>
</a>
</div>
</div>
</div>
</div>
<div id="message-container">
<div class="container-title">
Messages
</div>
<ul>
<li>
<div class="message-list">
<div class="message-head">
Witness mega event Tribal Cultural Heritage Walk - By Balpreet Singh (Apr 01, 2022)
</div>
<div class="message-body">
Lovely Professional University is organizing a event Tribal Cultural Heritage Walk
from 2:00 PM Onward. Huge state wise tribal cultural procession will be the major
highlight of event. The procession will start from the amphi-Theatre(above SDMA) and
move towards the Unipolis arena where each state team will be presented the dance
for 2 to 3 min. All the invited to witness the event.
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
PEL 130 Ca 3 Announcement - By Surinder Kaur (Mar 24, 2022)
</div>
<div class="message-body">
Dear All, Instructions and Syllabus Details: PEL 130 CA3 Sentences and Clauses
Conditionals Dear student, This is for your information that your CA3 Test for
PEL130 course is schedule important points as mentioned below: 1. The CA Test shall
consist of Multiple-Choice Questions (MCQs) on 10th April , 2022 (Sunday). In this
regard kindly note certain. 2. Test shall be conducted online on MyClass Platform.
3. CA test shall not be rescheduled under any circumstances. 4. The duration of the
Test shall be sixty minutes (60 minutes) (max. 2 minutes per question) 5. EXACT
Timing of the test will be shared soon, the student should login 15 minutes before
the scheduled time, and entry will be blocked after 15 minutes from the start time
of the CA exam. 6. Test shall comprise of 30 multiple-choice questions. 7. Syllabus
for the CA as communicated by the concerned faculty. 8. All questions shall be
compulsory. 9. Each question shall be of 1 mark and there shall be a negative
marking of 0.25 marks for each wrong answer given by the student. In case of any
issues/challenges, please contact 01824-517450 or email at:
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
Register Now for Flutter Festival: Info Session 2022 (s.gdsclpu.tech/ff) - By
Harjeet Kaur (Mar 24, 2022)
</div>
<div class="message-body">
Dear Student, Google Developer Student Club - LPU is hosting an Info Session for the
upcoming Flutter festivals, giving valuable insights in the world of flutter and
flutter development. It’s a community-organized developer workshop for people to
learn how to create beautiful UI with the help of Flutter, a Google's portable UI
toolkit. We are hosting the Fluter Festival Campaign Starting from 24th March 2022
to 30th March 2022, sharp at 7:00pm IST onwards. Register yourself and delve into
the world of Flutter development. We look forward to hosting you. RSVP Now:
<a href="https://s.gdsclpu.tech/ff">https://s.gdsclpu.tech/ff</a>
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
InterSchool Sports Events - By Makul Mahajan (Mar 16, 2022)
</div>
<div class="message-body">
Interschool sports events are going to be conducted for the session 2022 Term2.
Interested students can register on the link <a
href="https://bit.ly/csesports22">https://bit.ly/csesports22</a> You can
register for multiple events.
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
Share Your Achievements with the SCSE LPU Media Team - By Harjeet Kaur (Mar 12,
2022)
</div>
<div class="message-body">
The School of Computer Science and Engineering is inviting you to share your
achievements, success stories. So, your accomplishments can be posted on SCSE LPU
social media pages for helping you in getting the recognition and appreciation you
deserve and you may become a reason to inspire others. Feel free to reach us via
[email protected] Share Your Achievements: <a
href="https://bit.ly/scse-vertos">https://bit.ly/scse-vertos</a>
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
Online Assignment 1 - By Dr Dhanpratap Singh (Feb 28, 2022)
</div>
<div class="message-body">
Dear Student, A new Online Assignment 1 is available in your Account
</div>
</div>
</li>
</ul>
</div>
<div id="event-container">
<div class="container-title">
Events
</div>
<!-- Using the class message list to add events - Since both have same properties -->
<ul>
<li>
<div class="message-list">
<div class="message-head">
Blood Donation Camp 2022
</div>
<div class="message-body">
Venue : Block 28 & 56 (Basement) <br>
Date : April 07, 2022 Time: 9.30 pm
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
4th International COnference on intelligent Circuits and Systems (ICICS 2022)
</div>
<div class="message-body">
It is to inform you that the school of Electronics and Electrical Engineering is
organising the 4th International Conference on Intelligent Circuits and Systems
(ICICS 2022), to
be held during 8-9th 2022 (Virtual Mode) in Lovely Professional University, Punjab,
India.For More info about the Conference plese visit: <a
href="https://conferences.lpu.in/icics/">https://conferences.lpu.in/icics/</a>.
<br>
Venue: Online.
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
International Conference on Small Satellites (ICSS-2022)
</div>
<div class="message-body">
Center for Space Research (CSR) under the division of Research and Development
(DRD) in collaboration with the Society for Small Satelites (SSSS) is organising
the first of its kind 'International Conference on Small Satelites' to be held
from 29 April 2022, Friday to 30 April 2022, Saturday at Lovely Professional
University,
Punjab, India (Hybrid Mode).For More info about the Conference plese visit: <a
href="https://conferences.lpu.in/icss/">https://conferences.lpu.in/icss/</a>.
<br>
Venue: Hybrid (Online and Offline).
</div>
</div>
</li>
</ul>
</div>
<div id="assignment-container">
<div class="assignment-title">
Pending Assignment
</div>
<!-- Using the class message list to add events - Since both have same properties -->
<ul>
<li>
<div class="message-list">
<div class="message-head">
CSE202
</div>
<div class="message-body">
Course : CSE202 | Online Assignment 2 | Last Date :10-04-2022
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
ECE213
</div>
<div class="message-body">
Course : ECE213 | Online Assignment 2 | Last Date :12-04-2022
</div>
</div>
</li>
</ul>
<a target="_blank" href="./assignment_upload.html">
<button class="Button" style="margin: 100px 130px 0 130px;">
Submit Assignment
</button>
</a>
</div>
<div id="fee-container">
<div class="container-title">
Fee
</div>
<div style="text-align: center; font-size: 32px; margin-top: 50px;">
NIL
</div>
<button class="Button" style="margin: 80px 10px 0 10px;">
Pay Fee
</button>
<button class="Button" style="margin: 10px 10px ;">
Fee Statement
</button>
</div>
</div>
<!-- Placements Detail -->
<div id="Placements">
<div class="divTitle">
<b>Placements</b>
</div>
</div>
<div class="divBreak"></div>
<div id="academic-content">
<div id="drive-container">
<div class="assignment-title">
Placement Drive
</div>
<!-- Using the class message list to add events - Since both have same properties -->
<ul>
<li>
<div class="message-list">
<div class="message-head">
ALOHA TECHNOLOGY PVT LTD - Batch 2022
</div>
<div class="message-body">
Stream : CSE/IT,CAP,ECE <br><br>
Salary Package : CTC Rs 2.5 LPA to Rs 5 LPA
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
BIRYANI BY KILO - Batch 2022
</div>
<div class="message-body">
Stream : Hotel Management <br><br>
Salary Package : CTC Rs 1.5 LPA and Rs 2.4 LPA
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
DEN NETWORKS - Batch 2022
</div>
<div class="message-body">
Stream : CAP,Commerce,BBA <br><br>
Salary Package : CTC Rs. 2 LPA Plus Incentives
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
HAVELI RESTAURANT & RESORTS LTD - Batch 2022
</div>
<div class="message-body">
Stream : Fine Arts,Fashion,Architecture,Interior Design <br><br>
Salary Package : CTC Rs 3.6 LPA
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
KNOWLEDGEHUT - Batch 2022
</div>
<div class="message-body">
Stream : MBA,BBA <br><br>
Salary Package : CTC Rs. 8 LPA Where CTC Rs. 6 LPA is Fixed and CTC Rs. 2 LPA is
Variable
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
UTRADE SOLUTIONS - Batch 2023
</div>
<div class="message-body">
Stream : CSE/IT <br><br>
Salary Package : Stipend Rs 20000 PM for Initial six months and Rs 25000 PM for Next
six
Months then CTC Rs 10 LPA
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
UTRADE SOLUTIONS - Batch 2023
</div>
<div class="message-body">
Stream : CSE/IT <br><br>
Salary Package : Stipend Rs 15000 PM for Initial six months and Rs 20000 PM for Next
six
Months then CTC Rs 9 LPA
</div>
</div>
</li>
</ul>
</div>
<div id="placed">
<div class="assignment-title">
Placed Today
</div>
<!-- Using the class message list to add events - Since both have same properties -->
<ul>
<li>
<div class="message-list">
<div class="message-head">
HAVELI RESTAURANT & RESORTS LTD (CTC 5.6 LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Khushi Tiwari (Reg No. 19173469) <br>
Salman Chitsi (Reg No. 19167334) <br>
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
KNOWLEDGEHUT (CTC 6.3 LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Vedant Rama (Reg No. 17185991) <br>
Anil Vanket (Reg No. 19165952)
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
UTRADE SOLUTIONS (CTC 8.3 LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Vishal Daman (Reg No. 12043365) <br>
Aman Tyagi (Reg No. 12035725) <br>
Harminder Sag (Reg No. 12054635) <br>
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
UTRADE SOLUTIONS (CTC 9 LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Khushi Tiwari (Reg No. 19173469) <br>
Salman Chitsi (Reg No. 19167334) <br>
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
ALOHA TECHNOLOGY PVT LTD (CTC 4LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Rishi Bhalla (Reg No. 18103222) <br>
Supriya Purohit (Reg No. 18109890) <br>
Aniket Dhinaman (Reg No. 18103342)
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
BIRYANI BY KILO (CTC 3LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Vedant Rama (Reg No. 17185991) <br>
Anil Vanket (Reg No. 19165952)
</div>
</div>
</li>
<li>
<div class="message-list">
<div class="message-head">
DEN NETWORKS (CTC 2.6 LPA)
</div>
<div class="message-body" style="margin: 4px 15px;">
Shubham Dhage (Reg No. 18104563)
</div>
</div>
</li>
</ul>
</div>
</div>
<div id="Placements">
<div class="divTitle">
<b>Examination and University Guidelines</b>
</div>
</div>
<div class="divBreak"></div>
<div id="Examination">
<div id="Exam-card">
<a target="_blank" href="./Resource/Document/Scholor.pdf">
<div class="Exam-subcard">
ScholorShip Guidelines
</div>
</a>
<a target="_blank" href="https://ums.lpu.in/lpuums/frmDSAStudentPolicyView.aspx">
<div class="Exam-subcard">
Welfare Guidelines
</div>
</a>
<a target="_blank" href="./Resource/Document/Exam.pdf">
<div class="Exam-subcard">
Examination Rules
</div>
</a>
<a target="_blank" href="./Resource/Document/Academic.pdf">
<div class="Exam-subcard">
Academic Rules
</div>
</a>
<a target="_blank" href="./Resource/Document/Library Policy.pdf">
<div class="Exam-subcard">
Library Rules
</div>
</a>
<a target="_blank" href="./Resource/Document/GUIDELINES_FOR_CREDIT_TRANSFER_OPTION.pdf">
<div class="Exam-subcard">
Credit Transfer
</div>
</a>
</div>
<div id="seating-container">
<div class="assignment-title">
Seating Plan
</div>
<ul>
<li>
<div class="message-list">
<div class="message-head">
Date : 13 May 2022 MTH166 : DIFFERENTIAL EQUATIONS AND VECTOR CALCULUS
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type <br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
Date : 16 May 2022 ECE213 : DIGITAL ELECTRONICS
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type <br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
Date : 18 May 2022 PEL130 : ADVANCED COMMUNICATION SKILLS-I
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type<br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
Date : 20 May 2022 CSE202 : OBJECT ORIENTED PROGRAMMING
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type<br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
Date : 23 May 2022 CHE110 : ENVIRONMENTAL STUDIES
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type<br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li> <br>
<li>
<div class="message-list">
<div class="message-head">
Date : 25 May 2022 MEC107 : BASIC ENGINEERING MECHANICS
</div>
<div class="message-body">
Exam : Theory End Term (Regular) - All MCQ Objective Type<br><br>
Room No : Link- <a
href="https://myclass.lpu.in/Reporting">https://myclass.lpu.in/Reporting</a> :
</div>
</div>
</li>
</ul>
</div>
</div>
<div id="Placements">
<div class="divTitle">
<b>Important Announcements</b>
</div>
</div>
<div class="divBreak"></div>
<div id="Announcements">
<div class="assignment-title">
Announcements
</div>
<div class="announce-card">
<div class="he">
<b>
Offline Recruitment drive by RISC-LPU Apr 06,2022
</b>
</div>
<div class="bd">
Student organization ROBOTICS AND INTELLIGENT SYSTEM COMMUNITY- RISC under the aegis of
Student welfare wing, Lovely Professional University is organizing a recruitment
drive.RISC-LPU is one of the most reputed organizations in LPU with a 7th tier.
</div>
<div class="bd">
We strongly believe in teamwork as our prime motto is LEARN-IMPLEMENT-SHARE. We are
running successfully for the past 10 years and helped many students in achieving their
goals through various workshops, competitions, and social events. RISC-LPU aims to form
a fraternity of individuals who want to make a difference in the world through
technology, facilitating and nurturing their skills to contribute to the society. RISC
welcomes applications from students who seek to showcase their versatile skills and
problem-solving techniques.
</div>
<div class="bd">
Our recruiting domains are:
<br><br>
· Website Handlers
<br><br>
· Graphic Designers
<br><br>
· Content Writers
</div>
<div class="bd">
<b>
Public Speakers
</b>
The doors are open, the golden key is your hard work and interest! This is the platform
you can take advantage of to travel towards your goals, so hurry up and do register: <a
href="https://tinyurl.com/risc-rd22">https://tinyurl.com/risc-rd22</a>
</div>
<div class="bd">
Last date to register: 7th April 2022 <br>
Note: This opportunity is only for offline students. Visit block 39 Innovation Studio
<br>
For further queries - 7993427844 (Mahidhar) | 9912866580 (Dhanush)Social Media - <a
href=" https://linktr.ee/risc_lpu"> https://linktr.ee/risc_lpu</a>
</div>
<div class="bd">
Uploaded By: <br>
<b>
Dr. Sorabh Lakhanpal <br>