-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
1189 lines (1086 loc) · 51.5 KB
/
index.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
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>
<head>
<!-- Title Page -->
<title>Scrolls | 2016</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Bootstrap Javascript-->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Jquery Lib -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- User Stylesheet -->
<link rel="stylesheet" type="text/css" href="asset/css/index.css">
<!-- User Javascript -->
<script src="asset/js/index.js"></script>
<!-- Scrollify Javascript -->
<script src="asset/js/jquery.scrollify.js"></script>
<!-- Font Awesome CDN -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,700,900|Open+Sans:400,600" rel="stylesheet">
<!--Google Map-->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDTPWN__X_moAy4Nty0TgEJKMkynbw-n6U&callback=initMap" async defer></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<!-- Section Landing Page (Parallassx.js) -->
<section class="landing">
<div id="menu-back">
</div>
<div id="wrapper">
<div class="overlay"></div>
<!-- Sidebar -->
<nav class="navbar navbar-inverse navbar-fixed-top" id="sidebar-wrapper" role="navigation">
<ul class="nav sidebar-nav">
<li class="sidebar-brand">
<a href="#">Navigation</a>
</li>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About Scrolls</a>
</li>
<li>
<a href="#topics">Topics</a>
</li>
<li>
<a href="#">Rules and Regulations</a>
</li>
<li>
<a href="#dates" data-toggle="collapse" id="drop-date">Important Dates</a>
<div id="dates" class="panel-collapse drop-date-panel collapse">
<ul class="list-group">
<li class="list-group-item">
10th October, 2015
<p style="font-size: 11px; margin-top: -5px; margin-bottom: 0px; line-height: 12px;">Last Date for Registration and Submission of Synopsis</p>
</li>
<li class="list-group-item">
16th October, 2015
</li>
<li class="list-group-item">
19th October, 2015
</li>
<li class="list-group-item">
23rd October, 2015
</li>
</ul>
</div>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</nav>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper" >
<button type="button" class="hamburger is-closed" data-toggle="offcanvas">
<span class="hamb-top"></span>
<span class="hamb-middle"></span>
<span class="menu-text"></span>
<span class="hamb-bottom"></span>
</button>
</div>
<!-- /#page-content-wrapper -->
</div>
<div class="download">
<a href="#"><button class="btn"><span class="fa fa-file-text" style="font-size: 25px; padding"></span></button></a>
<a href="#"><button class="btn"><span class="fa fa-trophy" style="font-size: 25px; padding"></span></button></a>
</div>
<div class="custom-register">
<a href="#" data-toggle="modal" data-target="#form-modal"><button class="btn"><span style="color: #424242; font-size: 12px;">Register Here</span><span class="fa fa-pencil-square-o" style="font-size: 30px;padding: 5px 7%; vertical-align: middle;"></span></button></a>
</div>
</section>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<section class="about">
<!-- <div class="content" style="position: fixed;">
<div class="fixme menu-fixed">
<span class="fa fa-bars"></span>
</div>
</div> -->
<!-- Fixed Menu -->
<!-- Up and Down Arrow -->
<!-- #### Comment #### Arrow Keys are not Looking Good, change its styling with its glyphicon -->
<!-- <div class="arrow-fixed">
<span class="fa fa-long-arrow-up" ></span>
<span class="fa fa-long-arrow-down" ></span>
</div> -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>About Scrolls</h1>
<h4>“ Reasons will take you from A to B but imagination will take you everywhere.”<br>- Albert Einstein</h4>
<p>A national level technical paper presentation contest that provides a pedestal to unleash the talent of budding technocrats, SCROLLS-2016 deals with the most thriving and progressive fields of technology and management, bringing Computing, Information Technology, Mechanical Engineering, Electrical Engineering, Electronics & Communication Technologies and Civil Engineering along with major developmental leaps in management and leadership in its fold.The crystal clarity and insight of the unique topics will not only transcend the contestant to glory but will also add to the technological advancement of the era. The share you transcribe to evacuate the sub fusc of unawareness will be in your own hands. Melt the dusk and evolve into the new dawn of prestige with utter confidence and perseverance.</p>
<p class="display-web">We believe that the real conflux to innovation and creativity is imagination, power to think beyond the stereotype and conventions.The unfaltering will and determination to conquer your dreams and the knowledge of the path is what makes an individual rise to the unsurpassable summits. Be as bold as the strokes of a Maestro and leave an untarnished hue on the world.Keeping the above in mind, we at AKGEC organize an annual National Level Technical Paper Presentation event called SCROLLS (Student Creative Oratory Learning Skills) which aspires to amplify excellence in the sphere of technology and management to promote the technocrats and entrepreneurs of tomorrow. This event provides a prominent rostrum to the evolving professionals who can channelize their talent into creativity and give their imagination cutting edge.Innovation being the key to the treasurable ability of wrapping the abstracts into actions and words is our motto to the magnificent event. If you can imagine it, you can achieve it and if you can achieve it the perks are all yours. We invite budding pioneers from Management and various Engineering domains to this event. It is an honest effort to widen the horizon of the technophiles to partake their knowledge for a better future.Let us unite together and explore all the new dimensions in this large world of science, surmounting the peak of engineering and management, giving ourselves a chance for the best future we can hope of.</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/board.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/podium-icon.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/calendar-1.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3" style="margin-top: 1.2%;">
<img src="asset/images/certificate.png" class="img-responsive about-img">
</div>
</div>
</div>
</section>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<!-- <section class="logo-section">
<div class="container-fluid gap-off">
<div class="col-lg-6 gap-off ">
</div>
<div class="col-lg-6 gap-off">
<div class="row row-off">
<div class="col-lg-6 gap-off " style="background-color: #fbc94a;">
<div class="logo-sec-text">
<img src="asset/images/b.png">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sit amet commodo mauris. </p>
</div>
</div>
<div class="col-lg-6 gap-off " style="background-image: url(asset/images/f.jpg); background-size: cover;">
</div>
</div>
<div class="row row-off">
<div class="col-lg-6 gap-off " style="background-image: url(asset/images/j.jpg); background-size: cover;">
</div>
<div class="col-lg-6 gap-off " style="background-color: #fbc94a;">
<div class="logo-sec-text">
<img src="asset/images/b.png">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sit amet commodo mauris. </p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<section class="topics" id="topics">
<div class="container-fluid gap-off display-web">
<div class="col-lg-9 col-md-8 col-sm-8 col-xs-6 gap-off nav nav-pills"><!-- Navigation Pill Iniciatation -->
<div class="row row-off">
<div class="row row-off">
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
</div>
<div class="row row-off">
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
</div>
</div>
<div class="row row-off">
<div class="row row-off">
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 gap-off">
<div class=" shade">
<h3>Mechanical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
</div>
</div>
</div>
<div class="row row-off">
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<a data-toggle="pill" href="#see-1" class="btn btn-topic hvr-icon-forward">See Inside</a>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-9 col-md-8 col-sm-6 col-xs-6 gap-off nav display-mob nav-pills" style="padding-top: 50px;">
</div> -->
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-6 gap-off" style="background-color: #fbc94a; min-height: 100%; max-height: 100%;">
<div class="topic-main">
<h1>Topics</h1>
<div class="tab-content">
<div id="see-0" class="tab-pane fade in active">
<p>asskjfjhasfkgiul</p>
</div>
<div id="see-1" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>Application of Nano technology in health monitor treatment.</li>
<li>Power Generation using Nano-carbon tubes.</li>
<li>Cryogenic Engines.</li>
<li>Application of CAD software (Catia, ProE) and designing software’s.</li>
<li>Automatic Transmission in Automobiles.</li>
<li>Hydraulic and pneumatic actuators.</li>
<li>Gear Fault detection in gear box using oil conditioning monitoring.</li>
<li>Improvisation during the last two decades in passenger cars.</li>
<li>Advanced radiator concepts and smart materials.</li>
<li>Recent trends in Mechanical Engineering.</li>
<li>Kinematics/dynamics of Robotic Manipulators.</li>
<li>Robotic Applications: Present & Future.</li>
</ol>
</div>
<div id="see-2" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>Embedded Systems.</li>
<li>Augmented Reality.</li>
<li>Natural Language Processing.</li>
<li>Genetic Algorithms.</li>
<li>Cloud Computing.</li>
<li>Bio-Inspired Computing.</li>
<li>Semantic Web.</li>
<li>Mobile Computing and Data Intensive Computing.</li>
<li>Soft Computing including multi-criteria Analysis.</li>
<li>Artificial Intelligence.</li>
<li>Big Data Analytics.</li>
</ol>
</div>
<div id="see-3" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>4G Technology.</li>
<li>Mobile Satellite Communication.</li>
<li>Future of Mobile Technology.</li>
<li>Optoelectronics.</li>
<li>Nanotechnology.</li>
<li>VLSI.</li>
</ol>
</div>
<div id="see-4" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>Artificial Intelligence in Substation Control.</li>
<li>Automated Energy Meter Reading for Billing Purpose. </li>
<li>I-Series Processor.</li>
<li>Electromagnetic Bomb.</li>
<li>Humanoid Robotics.</li>
<li>Hydraulic and pneumatic actuators.</li>
<li>Gear Fault detection in gear box using oil conditioning monitoring.</li>
<li>Improvisation during the last two decades in passenger cars.</li>
<li>Advanced radiator concepts and smart materials.</li>
<li>Recent trends in Mechanical Engineering.</li>
<li>Kinematics/dynamics of Robotic Manipulators.</li>
<li>Robotic Applications: Present & Future.</li>
</ol>
</div>
<div id="see-5" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>Application of Nano technology in health monitor treatment.</li>
<li>Power Generation using Nano-carbon tubes.</li>
<li>Cryogenic Engines.</li>
<li>Application of CAD software (Catia, ProE) and designing software’s.</li>
<li>Automatic Transmission in Automobiles.</li>
<li>Hydraulic and pneumatic actuators.</li>
<li>Gear Fault detection in gear box using oil conditioning monitoring.</li>
<li>Improvisation during the last two decades in passenger cars.</li>
<li>Advanced radiator concepts and smart materials.</li>
<li>Recent trends in Mechanical Engineering.</li>
<li>Kinematics/dynamics of Robotic Manipulators.</li>
<li>Robotic Applications: Present & Future.</li>
</ol>
</div>
<div id="see-6" class="tab-pane fade in">
<ol style="padding: 20px;">
<li>Earthquake Engineering - Seismic risk reduction in NCR region.</li>
<li>Water Supply & Sanitation under Swachh Bharat Abhiyan.</li>
<li>Evolution of Skyscrapers.</li>
<li>Application of remote Sensing and GIS techniques.</li>
<li>Automatic Transmission in Automobiles.</li>
<li>Hydraulic and pneumatic actuators.</li>
<li>Gear Fault detection in gear box using oil conditioning monitoring.</li>
<li>Improvisation during the last two decades in passenger cars.</li>
<li>Advanced radiator concepts and smart materials.</li>
<li>Recent trends in Mechanical Engineering.</li>
<li>Kinematics/dynamics of Robotic Manipulators.</li>
<li>Robotic Applications: Present & Future.</li>
</ol>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid gap-off display-mob" style="color: #fff;">
<div class="row row-off">
<div style="margin-top:50px;" id="mob-topic">
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
<div class="col-xs-6 gap-off" style="height: 31vh; background-color: #424242; border:1px solid rgba(0,0,0,0.1); padding: 10px;">
<h4>Electrical Engineering</h3>
<p>The branch of engineering dealing with the design, construction, and use of machines.</p>
<a data-toggle="modal" data-target="#ee"><span class="fa fa-arrow-circle-right"></span></a>
</div>
</div>
</div>
<!-- Mobile Topics Modal -->
<div class="modal fade" id="ee" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Electrical Engineering</h4>
</div>
<div class="modal-body gap-off" style="padding: 10px!important;">
<div class="container-fluid gap-off">
<ol class="modal-list">
<li>Application of Nano technology in health monitor treatment.</li>
<li>Power Generation using Nano-carbon tubes.</li>
<li>Cryogenic Engines.</li>
<li>Application of CAD software (Catia, ProE) and designing software’s.</li>
<li>Automatic Transmission in Automobiles.</li>
<li>Hydraulic and pneumatic actuators.</li>
<li>Gear Fault detection in gear box using oil conditioning monitoring.</li>
<li>Improvisation during the last two decades in passenger cars.</li>
<li>Advanced radiator concepts and smart materials.</li>
<li>Recent trends in Mechanical Engineering.</li>
<li>Kinematics/dynamics of Robotic Manipulators.</li>
<li>Robotic Applications: Present & Future.</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<!-- <section class="wrapper" id="wrapper">
<div class="container-fluid gap-off">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="row">
<div class="col-lg-12 gap-off sec-2-padding " id="about-quote">
<quote>" If you can imagine something that is beyond all the limitations,then, you have the urge to conquer the world."</quote>
</div>
</div>\
<div class="row">
<div class="col-lg-6 col-xs-6 gap-off sec-2-padding " id="about-block-1">
<img src="asset/images/a.png">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sit amet commodo mauris. </p>
</div>
<div class="col-lg-6 col-xs-6 gap-off sec-2-padding" id="about-block-2">
<img src="asset/images/b.png">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sit amet commodo mauris. </p>
</div>
</div>
</div>\
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 gap-off sec-2-padding " id="about-detail" style="background-image: url(asset/images/c.jpg);
background-size: cover; background-position: center;">
</div>
</div>
</section> -->
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<section class="rules">
<div class="conatiner-fluid gap-off ">
<div class="row row-off">
<div class="col-lg-6 col-md-6 col-sm-6 gap-off" id="rules-head">
<h1>Rules <br>and <br>Regultions</h1>
<h5>Rules and Regulations</h5>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>1. The competition will be open to all bonafide students of Engineering and Management Colleges.<span class="fa fa-graduation-cap"> </span>
</p>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>2. Maximum of 3 and minimum of 2 authors per paper.<span class="fa fa-users"> </span></p>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>3. Synopsis of maximum 1000 words to be sent by the specified date. Based on the synopsis, an expert committee will select the papers for inclusion in the final paper presentation. <span id="rules-span-1">1000 <br>Words</span></p>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>4. For presentation, a time slot of 7 minutes + 3 minutes (for Q&A) will be given to each team.<span class="fa fa-hourglass-o"> </span></p>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>5. A soft copy of the final paper is to be sent before the designated date.<span class="fa fa-paperclip"> </span></p>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 gap-off rule-div">
<p>6. The paper to be typed in single space, double column format, using Times New Roman font and size 12. Maximum number of pages to be 10 and the page should have no numbers. A margin of 1’’ all around to be left.<span class="fa fa-files-o"> </span></p>
</div>
</div>
</div>
</section>
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
<section class="team">
<div class="conatiner-fluid gap-off ">
<div class="row row-off">
<div class="col-lg-6 col-md-6 col-sm-6 gap-off" id="team-head">
<h1>Contact Us</h1>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12 gap-off">
<div class="container-fluid" style="padding: 0;">
<div id="map"></div>
</div>
</div>
<a data-toggle="modal" data-target="#query"><div class="col-lg-3 col-md-3 col-sm-3 col-xs-6 gap-off team-div"><!-- Query Up -->
<h3>Query Us.</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a aliquam est, sit amet iaculis libero.</p>
</div></a>
<a data-toggle="modal" data-target="#scroll-team"><div class="col-lg-3 col-md-3 col-sm-3 col-xs-6 gap-off team-div">
<h3>Meet Our Scrolls Team.</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a aliquam est, sit amet iaculis libero.</p>
</div></a>
<a data-toggle="modal" data-target="#dev-team"><div class="col-lg-3 col-md-3 col-sm-3 col-xs-6 gap-off team-div-star team-div">
<h3 style="line-height: 30px;">Meet Our Designer and Developer Team.</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a aliquam est, sit amet iaculis libero.</p>
</div>
</a>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 gap-off">
<div class="col-sm-6 poweredbysi">
<p style="font-weight: 700;">Proudly Powered By- </p>
<h1 style="text-transform: uppercase; margin: 0px;">Software <span style="display: block;">Incubator</span></h1>
</div>
<div class="col-sm-6">
<img src="asset/images/silogo.svg" id="si-logo" class="center-block">
</div>
</div>
</div>
</div>
</section>
<!-- *********************************************************************************************************************************** -->
<!-- Query Modal -->
<div class="modal fade" id="query" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Ask Us Questions ?</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<input type="email" class="textbox" placeholder="Enter Email Address">
</div>
<div class="form-group">
<!-- <label for="Description">Query Description</label> -->
<textarea class="textbox" placeholder="Write Your Query here" rows="5" style="width: 92%;"></textarea>
</div>
<button type="submit" class="btn btn-send" data-dismiss="modal">Send</button>
</form>
</div>
</div>
</div>
</div>
<!-- Scroll Team Modal -->
<div class="modal fade" id="scroll-team" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Scroll Team</h4>
</div>
<div class="modal-body gap-off" style="padding: 0px!important;">
<div class="container-fluid gap-off">
</div>
</div>
</div>
</div>
</div>
<!-- Developer Team Modal -->
<div class="modal fade" id="dev-team" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Software Incubator Team</h4>
</div>
<div class="modal-body gap-off" style="padding: 0px!important;">
<div class="container-fluid gap-off">
<div class="row">
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/got.jpg" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/podium-icon.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/calendar-1.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3" style="margin-top: 1.2%;">
<img src="asset/images/certificate.png" class="img-responsive about-img">
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/board.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/podium-icon.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/calendar-1.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3" style="margin-top: 1.2%;">
<img src="asset/images/certificate.png" class="img-responsive about-img">
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/board.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/podium-icon.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3">
<img src="asset/images/calendar-1.png" class="img-responsive about-img">
</div>
<div class="col-lg-3 col-sm-3 col-xs-3" style="margin-top: 1.2%;">
<img src="asset/images/certificate.png" class="img-responsive about-img">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="form-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document" >
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="myModalLabel">REGISTER AS</h4>
</div>
<div class="modal-body" style="overflow-y:scroll; height:540px;">
<!-- tab content -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">Member</a></li>
<li><a data-toggle="tab" href="#menu1">Team</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<form method="POST" action="registerParticipant.php" >
<div class="form-group" style="margin-top: 3%;">
<input type="text" class="form-control" id="form-name" name="name" placeholder="Enter your name" data-validation="custom required" data-validation-regexp="^([a-zA-Z ]*)$">
</div>
<?php
$courses= curl_init();
$courses_url="http://localhost:8080/api/Domains/GetCourses";
curl_setopt_array($courses, array( CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $courses_url,
));
$courses= curl_exec($courses);
$courses=json_decode($courses);
?>
<div class="form-group">
<label for="sel1">Course </label>
<select class="form-control" id="form-course" name="course" data-validation="required">
<?php foreach ($courses as $course) {
?>
<option value="<?php echo $course->CourseId; ?>" ><?php echo $course->CourseName; ?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label for="sel1">Year </label>
<select class="form-control" id="form-year" name="year" data-validation="required">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</div>
<?php
$colleges= curl_init();
$colleges_url="http://localhost:8080/api/Colleges/GetColleges";
curl_setopt_array($colleges, array( CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $colleges_url,
));
$colleges= curl_exec($colleges);
$colleges=json_decode($colleges);
?>
<div class="form-group">
<label for="sel1">College</label>
<select class="form-control" id="form-college" name="college">
<option value="">Others</option>
<?php foreach ($colleges as $college) {
?>
<option value="<?php echo $college->CollegeId; ?>" ><?php echo $college->CollegeName; ?></option>
<?php } ?></select>
</div>
<div class="form-group">
<input type="text" class="form-control" id="form-college-name" name="college_name" placeholder="Enter your College Name" data-validation="custom" data-validation-regexp="^([a-zA-Z ]*)$">
</div>
<div class="form-group">
<input type="text" class="form-control" id="form-studentId" name="studentId" placeholder="Student ID" data-validation="custom" data-validation-regexp="^\d{7}[Dd]{0,1}$">
</div>
<div class="form-group">
<input type="text" class="form-control" id="form-number" name="number" placeholder="Contact Number" data-validation="number length" data-validation-length="10">
</div>
<div class="form-group">
<input type="text" class="form-control" id="form-email" name="email" placeholder="Email" data-validation="required email">
</div>
<p>Accomodation</p>
<label class="radio-inline"><input type="radio" id="accomodation" name="accomodation" value="false" checked>No</label>
<label class="radio-inline"><input type="radio" id="form-accomodation" value="true" name="accomodation">Yes</label>
<br>
<input type="submit" name="submit" value="submit" class="btn btn-default">
</form>
</div>
<div id="menu1" class="tab-pane fade">
<form method="POST" action="RegisterTeam.php">
<div class="form-group" style="margin-top: 3%;">
<input type="text" class="form-control" id="form-team-name" name="team_name" placeholder="Enter team name" data-validation="custom required" data-validation-regexp="^([a-zA-Z ]*)$" >
</div>
<label class="radio-inline"><input type="radio" class="form-no-of-participants" id="form-no-of-participants" name="number_of_participants" value="2" checked> 2 members</label>
<label class="radio-inline"><input type="radio" class="form-no-of-participants" id="form-no-of-participants" name="number_of_participants" value="3"> 3 members</label>
<br>
<label>Member 1</label>
<input type="text" class="form-control" id="form-member-1" name="member1_id" placeholder="Scroll ID" data-validation="custom required" data-validation-regexp="^(AKG \d\d\d\d)?$">
<input type="text" class="form-control" id="form-member-1-name" name="member1_name" placeholder="Name" data-validation="custom required" data-validation-regexp="^([a-zA-Z ]*)$">
<label>Member 2</label>
<input type="text" class="form-control" id="form-member-2" name="member2_id" placeholder="Scroll ID" data-validation="custom required" data-validation-regexp="^(AKG \d\d\d\d)?$">
<input type="text" class="form-control" id="form-member-2-name" name="member2_name" placeholder="Name" data-validation="custom required" data-validation-regexp="^([a-zA-Z ]*)$">
<div id="form-member-container-3">
<label>Member 3</label>
<input type="text" class="form-control" id="form-member-3" name="member3_id" value="" placeholder="Scroll ID" data-validation="custom" data-validation-regexp="^(AKG \d\d\d\d)?$">
<input type="text" class="form-control" id="form-member-3-name" name="member3_name" placeholder="Name" data-validation="custom" data-validation-regexp="^([a-zA-Z ]*)$">
</div>
<label>
Select the team leader
</label><br>
<label class="radio-inline"><input type="radio" id="form-team-leader-1" name="team_leader" value="1" checked>Member 1</label>
<label class="radio-inline"><input type="radio" id="form-team-leader-2" name="team_leader" value="2">Member 2</label>
<div id="team-leader-container-3">
<label class="radio-inline"><input type="radio" id="form-team-leader-3" name="team_leader" value="3">Member 3</label>
</div>
<br>
<?php
$domains= curl_init();
$domains_url="http://localhost:8080/api/Domains/GetDomains";
curl_setopt_array($domains, array( CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $domains_url,
));
$domains= curl_exec($domains);
$domains=json_decode($domains);
?>
<label>Domain</label>
<select class="form-control" id="form-domains" name="domains" data-validation="required">
<?php foreach ($domains as $domain) {
?>
<option value="<?php echo $domain->DomainId; ?>" ><?php echo $domain->DomainName; ?></option>
<?php } ?>
</select>
<?php
$topics= curl_init();
$topics_url="http://localhost:8080/api/Domains/GetTopics?domainId=1";
curl_setopt_array($topics, array( CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $topics_url,
));
$topics= curl_exec($topics);
$topics=json_decode($topics);
?>
<label>Topic</label>
<select class="form-control" id="form-topics" name="topics" data-validation="required">
<?php foreach ($topics as $topic) {
?>
<option value="<?php echo $topic->TopicId; ?>" ><?php echo $topic->TopicName; ?></option>
<?php } ?>
</select>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="form-password" name="password" placeholder="Enter password" data-validation="required">
</div>
<input type="submit" name="submit" value="submit" class="btn btn-default">
</form>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.3.26/jquery.form-validator.min.js"></script>
<script>
$.validate({
lang: 'en'
});
</script>
</div>
</div>
</div>
</div>
<!-- =============================================== second modal =================================================================== -->
<!-- Button trigger Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#login-modal">LOG IN</button>
<!-- Modal -->
<div class="modal fade bd-example-modal-sm" id="login-modal" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="myModalLabel">LOG IN</h4>
</div>
<div class="modal-body">
<form method="POST" action="login.php">
<div class="form-group">
<label for="teamName">Team ID:</label>
<input type="text" id="teamName" name="teamId" class="form-control" data-validation="required custom" data-validation-regexp="^(SCROLLS \d\d\d\d)?$">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" name="password" class="form-control" id="password" data-validation="required">
</div>
<input type="submit" name="submit" value="submit" class="btn btn-default">
</form>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.3.26/jquery.form-validator.min.js"></script>
<script>
$.validate({
lang: 'en'
});
</script>
</div>
</div>
<!-- ++++++++++++++++ Insheet Script +++++++++++++++++-->
<script >
$(document).ready(function(){
console.log("HIIIII");
$('#form-member-container-3').hide();
$('#team-leader-container-3').hide();
$('#form-studentId').hide();
$('.form-no-of-participants').click(function(){
console.log("hi");
if($(this).attr("value")=="2"){
$('#form-member-container-3').hide();
$('#team-leader-container-3').hide();
}
if($(this).attr("value")=="3"){
$('#form-member-container-3').show();
$('#team-leader-container-3').show();
}
});
$('#form-domains').change(function(){
$('#form-topics').children().remove();
$.get("http://localhost:8080/api/Domains/GetTopics?domainId="+$(this).val(),function(data,status){
//console.log(data);
for(var i=0;i<data.length;i++) {
$('#form-topics').append($('<option>', {
value: data[i].TopicId,
text: data[i].TopicName
}));
}
});
});
$('#form-college').change(function(){
//console.log($(this).val());
if($(this).val()=="")
$('#form-college-name').show();
else
$('#form-college-name').hide();
});
$('#form-college').change(function(){
//console.log($(this).val());
if($(this).val()==1)
$('#form-studentId').show();
else
$('#form-studentId').hide();
});
});
</script>
<!-- Scrollify Script -->
<script>
$(function() {
$.scrollify({
section : ".landing, .about, .wrapper, .logo-section, .topics, .rules, .team",
interstitialSection : "",
easing: "easeOutExpo",
scrollSpeed: 800,
offset : 0,
scrollbars: false,
standardScrollElements: "",
setHeights: true,
overflowScroll: true,
});
});
</script>
<!-- ++++++++++++++++ Tab Script +++++++++++++++++-->
<script>
$(document).ready(function() {
$("div.bhoechie-tab-menu>div.list-group>a").click(function(e) {
e.preventDefault();
$(this).siblings('a.active').removeClass("active");
$(this).addClass("active");
var index = $(this).index();
$("div.bhoechie-tab>div.bhoechie-tab-content").removeClass("active");
$("div.bhoechie-tab>div.bhoechie-tab-content").eq(index).addClass("active");
});
});
</script>
<!-- ++++++++++++++++ Navigation Fix Script +++++++++++++++++-->
<script>
var fixmeTop = $('.fixme').offset().top;
$(window).scroll(function() {
var currentScroll = $(window).scrollTop();
if (currentScroll >= fixmeTop) {
$('.fixme').css({
position: 'fixed',
top: '0',
left: '0'
});
} else {
$('.fixme').css({
position: 'static'
});
}
});
</script>
<!-- ++++++++++++++++ Hamburger Script +++++++++++++++++-->
<script>
$(document).ready(function () {
var trigger = $('.hamburger'),
overlay = $('.overlay'),
isClosed = false;
trigger.click(function () {
hamburger_cross();
});
function hamburger_cross() {
if (isClosed == true) {
overlay.hide();
trigger.removeClass('is-open');
trigger.addClass('is-closed');
isClosed = false;
} else {
overlay.show();
trigger.removeClass('is-closed');