forked from JituR101/ecell
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
1211 lines (1082 loc) · 65.7 KB
/
Copy pathindex.php
File metadata and controls
1211 lines (1082 loc) · 65.7 KB
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
<?php
if ( isset( $_POST['submitexpo'] ) ) {
$con = mysqli_connect("localhost:3306", "conso", "Conso123@", "conso");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$email=$_POST['emailexpo'];
$query = mysqli_query($con, "INSERT into expo (EMAIL) values('$email')");
mysqli_close($con);
}
?>
<!DOCTYPE html>
<html lang="en" class="no-js">
<!-- Begin Head -->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125403862-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125403862-1');
</script>
<!-- Basic -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1">
<meta name="google-site-verification" content="gXeMBX--H7xSFeawu77WYuSIYyuZQdkI4YQQnV0Hf_Y" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>E-CELL | VNIT</title>
<meta name="keywords" content="Ecell, vnit, E-cell VNIT, entreprenuship cell, consortium 18, 2018, consortium'18, vnit consortium" />
<meta name="description" content="E-Cell VNIT aims to promote and develop entrepreneurship culture amongst the students. Throughout the year, we
conduct various events, workshops and speaker
sessions sessions for inspiring and assisting young
entrepreneurs in their journey in the world of
business">
<meta name="author" content="Sagar Bansal">
<meta name="p:domain_verify" content="0f05c002329109d3b3d90e166a63e705"/>
<meta name="theme-color" content="rgb(44,131,204)" )="">
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i|Montserrat:400,700" rel="stylesheet">
<!-- Vendor Styles -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css/animate.css" rel="stylesheet" type="text/css"/>
<link href="vendor/themify/themify.css" rel="stylesheet" type="text/css"/>
<link href="vendor/scrollbar/scrollbar.min.css" rel="stylesheet" type="text/css"/>
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet" type="text/css"/>
<link href="vendor/swiper/swiper.min.css" rel="stylesheet" type="text/css"/>
<link href="vendor/cubeportfolio/css/cubeportfolio.min.css" rel="stylesheet" type="text/css"/>
<!-- Theme Styles -->
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<link href="css/materialize.css" rel="stylesheet" type="text/css"/>
<link href="css/overlay.css" rel="stylesheet" type="text/css"/>
<link href="css/global/global.css" rel="stylesheet" type="text/css"/>
<!-- Favicon -->
<link rel="shortcut icon" href="img/icon.png" type="image/x-icon">
<link rel="apple-touch-icon" href="img/icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
</head>
<!-- End Head -->
<!-- Body -->
<body id="main">
<!--========== HEADER ==========-->
<header class="navbar-fixed-top s-header js__header-sticky js__header-overlay">
<!-- Navbar -->
<div class="s-header__navbar">
<div class="s-header__container">
<div class="s-header__navbar-row">
<div class="s-header__navbar-row-col">
<!-- Logo -->
<div class="s-header__logo">
<a href="#" class="s-header__logo-link">
<img class="s-header__logo-img s-header__logo-img-default" src="img/logo-ecell.png" alt="Ecell Logo" width="135px">
<img class="s-header__logo-img s-header__logo-img-shrink" src="img/logo-ecell-sm.png" alt="Ecell Logo">
</a>
</div>
<!-- End Logo -->
</div>
<div class="s-header__navbar-row-col">
<!-- Trigger -->
<a href="javascript:void(0);" class="s-header__trigger js__trigger">
<span class="s-header__trigger-icon"></span>
<svg x="0rem" y="0rem" width="3.125rem" height="3.125rem" viewbox="0 0 54 54">
<circle fill="transparent" stroke="#fff" stroke-width="1" cx="27" cy="27" r="25" stroke-dasharray="157 157" stroke-dashoffset="157"></circle>
</svg>
</a>
<!-- End Trigger -->
</div>
</div>
</div>
</div>
<!-- End Navbar -->
<!-- Overlay -->
<div class="s-header-bg-overlay js__bg-overlay" id="overlay">
<!-- Nav -->
<nav class="s-header__nav js__scrollbar">
<div class="container-fluid">
<!-- Menu List -->
<ul class="list-unstyled s-header__nav-menu">
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="#about">About</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="IPLEvents/index.php">Events</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="spons.php">Sponsors</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="flagshipfinal/index.php">Flagship</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="#">Team</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="https://blogs.ecellvnit.org">Blog</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider" href="#contact">Contact Us</a></li>
</ul>
<!-- End Menu List -->
</div>
</nav>
<!-- End Nav -->
<!-- Action -->
<ul class="list-inline s-header__action s-header__action--rb">
<li class="s-header__action-item">
<a class="s-header__action-link" href=" https://m.facebook.com/vnitecell/">
<i class="g-padding-r-5--xs ti-facebook"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Facebook</span>
</a>
</li>
<li class="s-header__action-item">
<a class="s-header__action-link" href="https://twitter.com/ecell_vnit">
<i class="g-padding-r-5--xs ti-twitter"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Twitter</span>
</a>
</li>
<li class="s-header__action-item">
<a class="s-header__action-link" href=" https://www.instagram.com/ecellvnit/">
<i class="g-padding-r-5--xs ti-instagram"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Instagram</span>
</a>
</li>
</ul>
<!-- End Action -->
</div>
<!-- End Overlay -->
</header>
<!--========== END HEADER ==========-->
<!--========== PROMO BLOCK ==========-->
<div class="s-promo-block-v3 g-bg-position--center g-fullheight--xs" id='skew1' >
<div class="container g-ver-center--sm g-padding-y-125--md g-padding-y-40--xs">
<div class="g-margin-t-30--xs g-margin-t-0--sm g-margin-t-125--lg g-margin-b-30--xs g-margin-b-40--md">
<h1 class="g-font-size-26--xs g-font-size-40--sm g-font-size-60--lg g-color--white g-font-weight--600">THE<br>ENTREPRENEURSHIP<br><span style="color:#2c83cc;">CELL</span></h1>
</div>
<div class="row">
<div class="col-sm-8 col-sm-push-4 g-margin-b-50--xs g-margin-b-0--md">
<div class="s-promo-block-v3__divider g-display-none--xs g-display-block--md"></div>
<div class="row">
<div class="col-sm-6 g-margin-b-30--xs g-margin-b-0--md">
<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".4s">
<p class="g-font-size-20--xs g-color--white">Sometimes when you innovate, you make mistakes. It is best to admit them quickly, and get on with improving your other innovations.</p>
</div>
</div>
<div class="col-sm-5 col-sm-offset-1">
<div class="clearfix">
<div class="pull-left">
<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".3s">
<a href="ecopreneur/index.php" title="Register" target="_blank">
<span class="text-uppercase g-font-size-22--xs g-color--white g-padding-x-5--xs"><b>ECOPRENEUR</b></span>
<i class="s-icon s-icon--sm s-icon--white-bg g-radius--circle ti-arrow-right"></i>
</a>
<!--<span class="s-promo-block-v3__date g-font-size-60--xs g-font-size-30--sm g-font-size-50--lg g-font-weight--600 g-color--primary">E-CELL<br><span class="g-font-size-20--xs g-font-size-30--lg">VNIT</span></span>-->
</div>
</div>
<!--<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".1s">-->
<!-- <span class="s-promo-block-v3__month g-font-size-18--xs g-font-size-22--lg g-font-weight--300 g-color--white-opacity-light">Prize Worth</span>-->
<!-- <span class="s-promo-block-v3__year g-font-size-18--xs g-font-size-22--lg g-font-weight--300 g-color--white-opacity-light">And more!</span>-->
<!--</div>-->
</div>
</div>
</div>
</div>
<!--<div class="col-sm-4 col-sm-pull-8">-->
<!-- <div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".5s">-->
<!-- <a href="https://startupconclave.ecellvnit.org" title="Register" target="_blank">-->
<!-- <span class="text-uppercase g-font-size-20--xs g-color--white g-padding-x-15--xs"><b>Startup Concave' 19</b></span>-->
<!-- <i class="s-icon s-icon--lg s-icon--white-bg g-radius--circle ti-arrow-right"></i>-->
<!-- </a>-->
<!--<p class="text-uppercase g-font-size-25--xs g-padding-x-15--xs">20 OCT</p>-->
<!-- </div>-->
<!--</div>-->
</div>
</div>
</div>
<!-- About -->
<div class="g-promo-section" id="about" style="background: rgba(255, 255, 255, 1);">
<div class="container g-padding-y-10--xs g-padding-y-40--sm">
<div class="row">
<div class="col-md-4 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<!--<p class="text-uppercase g-font-size-14--xs g-font-weight--700 g-color--primary g-letter-spacing--2 g-margin-b-25--xs">Ecell</p>-->
<br><div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".1s">
<h2 class="g-font-size-30--xs g-font-size-40--sm g-font-size-50--md">ABOUT</h2>
</div>
<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md g-color--primary">E-CELL, VNIT</h2>
</div>
</div>
<div class="col-md-7 col-md-offset-1">
<p class="g-font-size-18--xs g-color--dark">E-Cell VNIT is the entrepreneurship cell of <a href="http://vnit.ac.in/"class="g-color--primary" style="text-decoration:underline;">Visvesvaraya National Institute of Technology</a>. As the name suggests, the very purpose of E-Cell is to foster a community of contemporary as well as seasoned entrepreneurs,
besides mentoring of new and budding startups across the country.</p>
<p class="g-font-size-18--xs g-color--dark">
Established since 2003, E-Cell has been the driving force for channelizing and guiding more than 5,000 startups, impacting over 200,000 students and would-be-entrepreneurs.
</p>
<p class="g-font-size-18--xs g-color--dark">
With a variety of programs E-Cell organization plays a key role in development of entrepreneurial skills and giving an opportunity to the deserving.
</p>
<p class="g-font-size-18--xs g-color--dark">
At the same time, it has been invoking a sense of responsibility towards the nation in students by empowering social startups as well.
</p>
<p class="g-font-size-18--xs g-color--dark">
Throughout the year, the E-Cell organizes expert talks, webinar, workshops, light skill development events as well as highly rewarding competitionns, pitching scenarios and much more.
</p>
</div>
</div>
</div>
</div>
<!-- End About -->
<!--========== END PROMO BLOCK ==========-->
<!--========== PAGE CONTENT ==========-->
<!-- Counter -->
<div class="js__parallax-window" style="background: #2c83cce6;">
<div class="container g-padding-y-10--xs g-padding-y-15--sm">
<div class="row">
<div class="col-md-3 col-xs-6 g-full-width--xs g-margin-b-0--lg">
<div class="g-text-center--xs">
<div class=" g-margin-b-0--xs">
<figure class="g-display-inline-block--xs g-font-size-50--xs g-color--white js__counter">200</figure>
<span class="g-font-size-40--xs g-color--white">+</span>
</div>
<div class="center-block g-hor-divider__solid--white g-width-40--xs g-margin-b-25--xs"></div>
<h4 class="g-font-size-18--xs g-color--white">Cities</h4>
</div>
</div>
<div class="col-md-3 col-xs-6 g-full-width--xs g-margin-b-0--lg">
<div class="g-text-center--xs">
<div class=" g-margin-b-0--xs">
<figure class="g-display-inline-block--xs g-font-size-50--xs g-color--white g-margin-b-0--xs js__counter">15</figure>
<span class="g-font-size-40--xs g-color--white">K+</span>
</div>
<div class="center-block g-hor-divider__solid--white g-width-40--xs g-margin-b-25--xs"></div>
<h4 class="g-font-size-18--xs g-color--white">Students</h4>
</div>
</div>
<div class="col-md-3 col-xs-6 g-full-width--xs g-margin-b-0--sm">
<div class="g-text-center--xs">
<div class=" g-margin-b-0--xs">
<figure class="g-display-inline-block--xs g-font-size-50--xs g-color--white g-margin-b-0--xs js__counter">300</figure>
<span class="g-font-size-40--xs g-color--white">+</span>
</div>
<div class="center-block g-hor-divider__solid--white g-width-40--xs g-margin-b-25--xs"></div>
<h4 class="g-font-size-18--xs g-color--white">Startups</h4>
</div>
</div>
<div class="col-md-3 col-xs-6 g-full-width--xs">
<div class="g-text-center--xs">
<div class=" g-margin-b-0--xs">
<figure class="g-display-inline-block--xs g-font-size-50--xs g-color--white js__counter">50</figure>
<span class="g-font-size-40--xs g-color--white">+</span>
</div>
<div class="center-block g-hor-divider__solid--white g-width-40--xs g-margin-b-25--xs"></div>
<h4 class="g-font-size-18--xs g-color--white">Speakers</h4>
</div>
</div>
</div>
</div>
</div>
<!--End Counter -->
<!-- Events -->
<div class="container g-padding-y-0--xs s-portfolio" id="events" style="background: rgba(255, 255, 255, 1);">
<div class="g-text-center--xs g-margin-b-40--xs">
<h2 class="g-font-size-32--xs g-font-size-36--md ">High<span class="g-color--primary">Lights</span></h2>
</div>
<div class="card" id="event-card-bg">
<div class="card-tabs">
<ul class="tabs tabs-fixed-width">
<!--<li class="tab"><a href="#attraction">Events</a></li>-->
<li class="tab"><a class="" href="#startup">Startups</a></li>
<li class="tab"><a class="active" href="#session">Sessions</a></li>
<li class="tab"><a href="#initiative">Initiatives</a></li>
</ul>
</div>
</div>
<!--Startup Start-->
<div class="card-content code">
<div class="container g-margin-b-80--xs" id="startup">
<div class="row">
<!-- Item -->
<div class=" col-md-2 col-md-offset-1 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<!--<img src="img/guests/yash.jpg" alt="yash" onerror="this.onerror=null;">-->
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs"><span style="color:green">Meds</span><span style="color:red">On</span><span style="color:green">way</span></h4>
<!--<p class="g-color--dark">Yash Gandhi</p>-->
<div class="g-color--primary" id="call-session" onclick="show_overlay('yash')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<!--<img src="img/guests/ibhubs.jpg" alt="ibhubs" onerror="this.onerror=null;">-->
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs"><span style="color:blue">REP</span><span style="color:red">Tiles</span></h4>
<!--<p class="g-color--dark">IB Hubs</p>-->
<div class="g-color--primary" id="call-session" onclick="show_overlay('ibhubs')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<!--<img src="img/guests/frese.jpg" alt="frese" onerror="this.onerror=null;">-->
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs"><span style="color:cyan">Microland Limited</span></h4>
<!--<p class="g-color--dark">Michael Frese</p>-->
<div class="g-color--primary" id="call-session" onclick="show_overlay('frese')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<!--<img src="img/guests/chawala.jpg" alt="chawala" onerror="this.onerror=null;">-->
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs"><span style="color:red;">Spacewood</span></h4>
<!--<p class="g-color--dark">Devesh Chawla</p>-->
<div class="g-color--primary" id="call-session" onclick="show_overlay('chawala')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<!--<img src="img/guests/abrahams.jpg" alt="abrahams" onerror="this.onerror=null;">-->
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs"><span style="color:green">Lambent Technologies</span></h4>
<!--<p class="g-color--dark">Matt Abrahams</p>-->
<div class="g-color--primary" id="call-session" onclick="show_overlay('abrahams')">View</div>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Startup End-->
<!--Sessions Start-->
<div class="card-content code">
<div class="container g-margin-b-80--xs" id="session">
<div class="row">
<!-- Item -->
<div class=" col-md-2 col-md-offset-1 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<img src="img/guests/yash.jpg" alt="yash" onerror="this.onerror=null;">
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Data Analytics By Yash Gandhi</h4>
<p class="g-color--dark">Yash Gandhi</p>
<div class="g-color--primary" id="call-session" onclick="show_overlay('yash')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<img src="img/guests/ibhubs.jpg" alt="ibhubs" onerror="this.onerror=null;">
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Idea Generation and Validation</h4>
<p class="g-color--dark">IB Hubs</p>
<div class="g-color--primary" id="call-session" onclick="show_overlay('ibhubs')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<img src="img/guests/frese.jpg" alt="frese" onerror="this.onerror=null;">
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Error Management</h4>
<p class="g-color--dark">Michael Frese</p>
<div class="g-color--primary" id="call-session" onclick="show_overlay('frese')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<img src="img/guests/chawala.jpg" alt="chawala" onerror="this.onerror=null;">
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Desiging a BPlan</h4>
<p class="g-color--dark">Devesh Chawla</p>
<div class="g-color--primary" id="call-session" onclick="show_overlay('chawala')">View</div>
</span>
</div>
</div>
</div>
<!-- Item -->
<div class=" col-md-2 co-xs-12 col-sm-6">
<div class="card">
<div class="card-image">
<img src="img/guests/abrahams.jpg" alt="abrahams" onerror="this.onerror=null;">
</div>
<div class="card-content">
<span class="card-title">
<h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Web Session</h4>
<p class="g-color--dark">Matt Abrahams</p>
<div class="g-color--primary" id="call-session" onclick="show_overlay('abrahams')">View</div>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Session End-->
<!--Initiatives Start-->
<div class="card-content code">
<div class="container g-margin-b-100--xs g-padding-x-80--md" id="initiative">
<br>
<h4>Plantation</h4>
<h5>Smart Plantation by using Innovative Self Watering Tree Guard</h5>
<i>Sponsored by- Rainbow Greeners, Rakshak</i>
<p>Date: 26<sup>th</sup> January 2018</p>
<br>
<h6>About</h6>
<p>The 69th Republic Day of India witnessed a Self-Watering Tree Plantation Drive
organized by Entrepreneurship Cell, VNIT in association with Rakshak by Rainbow
Greeners. The Director of VNIT, Nagpur, Dr. N. S. Chaudhari, welcomed the initiative
along with the authorities and dignitaries of the institute. The environment and its
greenery help make a nation healthier in the most direct way possible, and the students
of E-Cell, VNIT, decided that this auspicious day called for a step in the right direction.
The self-watering tree guards ensure that water directly goes to the roots of the plant, and
needs water only once every fifteen days. The CEO of Ajmera Tires, Dipesh Ajmera, also attended
the event to show his support. Mr. Ajmera is also a mentor on the panel of Startup Conclave, a pan
India exhibition of startups as part of Consortium ’18, coming up on 9 March, 2018. The initiative
today goes hand in hand with E-Cell’s mantra this year to ‘Push the Human Race Forward’, and create
a growth-driven youth for the city and the nation at large. </p>
</div>
</div>
<!--Inititatives End-->
<!--Attractions Start-->
<!--<div class="card-content code">-->
<!-- <div class="container g-margin-b-80--xs" id="attraction">-->
<!-- <div class="row">-->
<!-- Item -->
<!-- <div class=" col-md-4 col-xs-12 col-sm-6">-->
<!-- <div class="card">-->
<!-- <div class="card-image">-->
<!-- <img src="img/guests/yash.jpg" alt="yash" onerror="this.onerror=null;">-->
<!-- </div>-->
<!-- <div class="card-content">-->
<!-- <span class="card-title">-->
<!-- <h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Flagship</h4>-->
<!--<p class="g-color--dark">9<sup>th</sup> March, 18:00</p>-->
<!--<div class="g-color--primary" id="call-session" onclick="show_overlay('inaug')">View</div>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- Item -->
<!-- <div class=" col-md-4 col-xs-12 col-sm-6">-->
<!-- <div class="card">-->
<!-- <div class="card-image">-->
<!-- <img src="img/guests/yash.jpg" alt="yash" onerror="this.onerror=null;">-->
<!-- </div>-->
<!-- <div class="card-content">-->
<!-- <span class="card-title">-->
<!-- <h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Jugaad</h4>-->
<!--<p class="g-color--dark">10<sup>th</sup> March</p>-->
<!--<div class="g-color--primary" id="call-session" onclick="show_overlay('day2')">View</div>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- Item -->
<!-- <div class=" col-md-4 col-xs-12 col-sm-6 col-md-offset-0 col-sm-offset-3">-->
<!-- <div class="card">-->
<!-- <div class="card-image">-->
<!-- <img src="img/guests/yash.jpg" alt="yash" onerror="this.onerror=null;">-->
<!-- </div>-->
<!-- <div class="card-content">-->
<!-- <span class="card-title">-->
<!-- <h4 class="g-font-size-18--xs g-color--dark g-margin-b-5--xs">Consortium</h4>-->
<!--<p class="g-color--dark">11<sup>th</sup> March</p>-->
<!--<div class="g-color--primary" id="call-session" onclick="show_overlay('day3')">View</div>-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--</div>-->
<!--Attractions End-->
</div>
<div class="flagship">
<div class="container g-padding-y-0--xs g-padding-y-0--sm" id="flagship">
<!-- End Swiper Clients -->
<div class="row">
<div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">Flagship</h2>
</div>
</div>
<div class="col-md-8 col-md-offset-1">
<p class="g-font-size-18--xs g-color--dark">VNIT's Entrepreneurship Cell presents Flagship, it's inaugural event. </p>
<p class="g-font-size-18--xs g-color--dark">Flagship connects today's youth to intellectual and experienced speakers. </p>
<p class="g-font-size-18--xs g-color--dark">As the first event of the year, Flagship leaves a lasting impact on the
minds of the students through a motivating and exciting session.
It provides students a platform to display innovation and address
issues of national and international importance. </p>
<p class="g-font-size-18--xs g-color--dark">Most importantly, Flagship provides the freshers at college the required
direction to increase productivity of work, and the guidance of eminent personalities.</p>
</div>
<div class="col-md-8 col-md-offset-1 g-text-right--xs">
<h2 class="g-font-size-16--xs g-font-size-18--sm g-font-size-18--md g-color--dark">5:30 PM | 02 August<br>5th floor, New Admin Building, VNIT Nagpur</h2>
</div>
</div>
</div>
</div>
<!--<div class="container g-padding-y-10--xs g-padding-y-40--sm">-->
<!-- <div class="row">-->
<!-- <div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">-->
<!-- <div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">-->
<!-- <h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">why <span class="g-color--primary">Flagship</span></h2>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="col-md-10 col-md-offset-1">-->
<!-- <p class="g-font-size-18--xs g-color--dark">Flagship, the annual curtain raiser for VNIT's entrepreneurial-->
<!-- journey, has been graced by speakers and leaders across all walks-->
<!-- of life, including Ms. Savi Sharma and Dr. Pawan Agarwal, who-->
<!-- overcame extraordinary barriers and revolutionised the fields of-->
<!-- literature and management, mesmerised students with tales of-->
<!-- triumph on par with those of David against Goliath, motivating-->
<!-- them to aim high and them to aim high and work on their very own success stories.</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="col-md-6 g-text-center--xs">-->
<!-- <h2 class="g-font-size-24--xs g-font-size-24--md "><span class="g-color--primary">When</span></h2>-->
<!-- <p class="g-font-size-18--xs g-color--dark"><b>18 August, 2018</b></p>-->
<!-- </div>-->
<!-- <div class="col-md-6 g-text-center--xs">-->
<!-- <h2 class="g-font-size-24--xs g-font-size-24--md "><span class="g-color--primary">Venue</span></h2>-->
<!-- <p class="g-font-size-18--xs g-color--dark"><b>Auditorium, VNIT</b></p>-->
<!-- </div>-->
<!-- </div>-->
<!--</div>-->
<div class="container g-padding-y-10--xs g-padding-y-40--sm" style="background: rgba(255, 255, 255, 1);">
<div class="row">
<div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">speakers <span class="g-color--primary">Flagship'19</span></h2>
</div>
</div>
</div>
<div class="row" id="hex-guests">
<div class="col-md-6 col-sm-6 col-md-offset-3 col-sm-offset-3 g-text-center--xs">
<img src="img/guests/harsh-goela.png" class="hex"></img>
<h2 class="g-font-size-24--xs g-font-size-24--md "><span class="g-color--primary">Harsh Goela</span></h2>
<p class="g-font-size-18--xs g-color--dark">Stock Trader<br><b>TEDx</b> Speaker, Founder of Goela School of Finance</p>
</div>
<div class="col-md-6 col-sm-6 g-text-center--xs">
<img src="img/guests/pankhuri.png" class="hex"></img>
<h2 class="g-font-size-24--xs g-font-size-24--md "><span class="g-color--primary">Pankhuri Gidwani</span></h2>
<p class="g-font-size-18--xs g-color--dark">Miss Grand International India 2016<br>Renowned <b>TEDx</b> Speaker</p>
</div>
<div class="col-md-6 col-sm-6 g-text-center--xs">
<img src="img/guests/jay-alani.png" class="hex"></img>
<h2 class="g-font-size-24--xs g-font-size-24--md "><span class="g-color--primary">Jay Alani</span></h2>
<p class="g-font-size-18--xs g-color--dark">Paranormal Investigator<br>Renowned <b>TEDx</b> Speaker</p>
</div>
</div>
</div>
<div class="jugaad">
<div class="container g-padding-y-0--xs g-padding-y-0--sm" id="jugaad">
<!-- End Swiper Clients -->
<div class="row">
<div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">Jugaad</h2>
</div>
</div>
<div class="col-md-9 col-md-offset-1">
<p class="g-font-size-18--xs g-color--dark"><i>“A youth without fire is followed by an old age without experience.”</i></p>
<p class="g-font-size-18--xs g-color--dark">‘Jugaad’, a term often associated with entrepreneurs, is a flexible approach
to problem-solving that uses limited resources in an innovative way .To ignite this spirit, E-Cell organises an event
called 'JUGAAD' at <a href="http://vnit.ac.in">Visvesvaraya National Institute of Technology</a>
where with limited resources, an excruciatingly small time frame put together with their jugaadu skills the participants make ginormous profits.</p>
<p class="g-font-size-18--xs g-color--dark">Each team is given an initial base investment of INR 100.
Teams have full freedom to use this money whichever way they like, to make maximum profits through legal means.
The event encourages out of the box thinking through which participants can earn profits, which in fact has resulted in beautiful
ideas and products many a times. The winners of the event are awarded with exciting goodies and an internship opportunity at an esteemed organisation.</p>
<a class="g-font-size-18--xs g-color--dark" href="https://jugaad.ecellvnit.org">Know More</a>
</div>
</div>
</div>
</div>
<!--hex-->
<div class="container g-padding-y-10--xs g-padding-y-40--sm" style="background: rgba(255, 255, 255, 1);">
<div class="row">
<div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">Glim<span class="g-color--primary">pses</span></h2>
</div>
</div>
</div>
<ul id="categories" class="clr">
<li>
<div>
<img src="img/gal/01.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/02.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/03.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/015.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/011.jpg" alt=""/>
</div>
</li>
<!--<li class="pusher"></li>-->
<li>
<div>
<img src="img/gal/014.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/012.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/05.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/07.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/08.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/010.jpg" alt=""/>
</div>
</li>
<li>
<div>
<img src="img/gal/09.jpg" alt=""/>
</div>
</li>
</ul>
</div>
<div class="conso">
<div class="container g-padding-y-0--xs g-padding-y-0--sm " id="conso">
<!-- End Swiper Clients -->
<div class="row">
<div class="col-md-12 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft g-text-center--xs" data-wow-duration=".3" data-wow-delay=".3s">
<h2 class="g-font-size-32--xs g-font-size-36--sm g-font-size-36--md ">Consortium</h2>
</div>
</div>
<div class="col-md-8 col-md-offset-1">
<p class="g-font-size-18--xs g-color--dark">Consortium, the Annual Entrepreneurship Summit of VNIT Nagpur of
<a href="http://vnit.ac.in">VNIT Nagpur</a> is a three day fest which comprises of invigorating events like
Startup Conclave, Swades, Bizzmantra and many more. The summit aims at fueling the entrepreneurial attitude
amongst students through healthy competition and exciting challenges, giving them a peak into the real world.
Get ready to dive into the extravaganza of </p>
<a class="g-font-size-18--xs g-color--dark" href="https://consortium.ecellvnit.org">Know More</a>
</div>
</div>
<!-- End Swiper Clients -->
</div>
</div>
<?php
// temporary commented youtube division
//<div style="position:relative;height:0;padding-bottom:56.24%"><iframe src="https://www.youtube.com/embed/VgCtuiDdMFA" style="position:absolute;width:100%;height:100%;left:0" width="640" height="360" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
?>
<!-- Feedback Form -->
<div class="g-bg-color--sky-light" id="contact">
<div class="container g-padding-y-0--xs g-padding-x-10--xs g-padding-x-150--md g-padding-y-0--sm">
<div class="g-text-center--xs g-margin-b-40--xs">
<p class="text-uppercase g-font-size-14--xs g-font-weight--700 g-color--primary g-letter-spacing--2 g-margin-b-25--xs">Contact</p>
<h2 class="g-font-size-32--xs g-font-size-36--md">Mail Us</h2>
</div>
<form method="post" action="">
<div class="row g-margin-b-40--xs">
<div class="col-sm-6 g-margin-b-20--xs g-margin-b-0--md">
<div class="g-margin-b-20--xs">
<input type="text" name="name" class="form-control s-form-v2__input g-radius--50" placeholder="* Name">
</div>
<div class="g-margin-b-20--xs">
<input type="email" name="email" class="form-control s-form-v2__input g-radius--50" placeholder="* Email">
</div>
<input type="text" name="phone" class="form-control s-form-v2__input g-radius--50" placeholder="* Phone">
</div>
<div class="col-sm-6">
<textarea class="form-control s-form-v2__input g-radius--10 g-padding-y-20--xs" rows="8" name="message" placeholder="* Your message"></textarea>
</div>
</div>
<div class="g-text-center--xs">
<button type="submit" class="text-uppercase s-btn s-btn--md s-btn--primary-bg g-radius--50 g-padding-x-80--xs">Submit</button>
</div>
</form>
<div class="g-text-center--xs" id="confirm"></div>
<div class="g-text-center--xs g-margin-b-40--xs">
<br><br>
<p class="text-uppercase g-font-size-14--xs g-color--dark g-font-weight--400 g-letter-spacing--2 g-margin-b-25--xs">Or Need Any Help? Contact: <a href="team.php">Team</a></p>
</div>
</div>
</div>
<!-- End Feedback Form -->
<!--========== END PAGE CONTENT ==========-->
<!--========== FOOTER ==========-->
<?php include("footer.php");?>
<!--========== END FOOTER ==========-->
<!-- Back To Top -->
<a href="javascript:void(0);" class="s-back-to-top js__back-to-top"></a>
<div class="overlay-session" id="yash">
<button onclick="hide_overlay('yash')" id="close-session">X</button>
<h3><b>Data Analytics by Yash Gandhi</b></h3>
<h4>About the Speaker</h4>
<ul>
<li>Yash Gandhi,</li>
<li>Lead Statistician,</li>
<li>Helpshift,</li>
<li>Purdue University</li>
</ul>
<p><b>Date : </b><b>24<sup>th</sup> August, 2017</b><p>
<h4>Insights</h4>
<p>
Data science, also known as data-driven science, is an interdisciplinary field of scientific
methods, processes, and systems to extract knowledge or insights from data in various forms,
either structured or unstructured, similar to data mining.
Data science is a "concept to unify statistics, data analysis and their related methods" in
order to "understand and analyze actual phenomena" with data.
</p>
<p>Here's a look at some of the key Big Data trends entrepreneurs need to be aware of today:</p>
<ul>
<li>Heavier emphasis on predictive analytics</li>
<li>Deep learning</li>
<li>The rise of the data engineer</li>
<li>Shifting away from Hadoop</li>
<li>Big Data-as-a-Self Service</li>
</ul>
</div>
<div class="overlay-session" id="ibhubs">
<button onclick="hide_overlay('ibhubs')" id="close-session">X</button>
<h3><b>Idea Generation And Validation</b></h3>
<h4>About the Speaker</h4>
<ul>
<li>IB Hubs,</li>
<li>Lead Statistician,</li>
<li>Helpshift,</li>
<li>Purdue University</li>
</ul>
<p><b>Date : </b><b>24<sup>th</sup> August, 2017</b><p>
<h4>Insights</h4>
<p>Comming Soon..</p>
</div>
<div class="overlay-session" id="frese">
<button onclick="hide_overlay('frese')" id="close-session">X</button>
<h3><b>Error Management</b></h3>
<br>
<h4>About the Speaker</h4>
<ul>
<li>Michael Frese,</li>
<li>Provost's Chair,</li>
<li>Head of Department,</li>
<li>National University of Singapore</li>
</ul>
<br>
<b>Date : </b><b>30<sup>th</sup> November, 2017</b>
<br><br>
<h4>Insights</h4>
<p>
Every organization is confronted with errors. Most errors are corrected easily,
but some may lead to negative consequences. Organizations often focus on error
prevention as a single strategy for dealing with errors. Our review suggests
that error prevention needs to be supplemented by error management—an approach
directed at effectively dealing with errors after they have occurred, with the
goal of minimizing negative and maximizing positive error consequences
(examples of the latter are learning and innovations). After defining errors
and related concepts, we review research on error-related processes affected
by error management (error detection, damage control). Empirical evidence on
positive effects of error management in individuals and organizations is then
discussed, along with emotional, motivational, cognitive, and behavioral
pathways of these effects. Learning from errors is central, but like other
positive consequences, learning occurs under certain circumstances—one being
the development of a mind-set of acceptance of human error.
</p>
</div>
<div class="overlay-session" id="chawala">
<button onclick="hide_overlay('chawala')" id="close-session">X</button>
<h3><b>Desiging a BPlan</b></h3>
<h4>About the Speaker</h4>
<ul type="none">
<li>Devesh Chawla,</li>
<li>CEO & Founder,</li>
<li>Chatur Ideas</li>
</ul>
<b>Date : </b><b>04<sup>th</sup> January, 2018</b>
<h4>Insights</h4>
<div>
<ul>
<li>
What is a business plan?
<ol type="a" start="1">
<li>Why prepare a business plan?</li>
<li>What to avoid in your business plan</li>
</ol>
</li>
<li>
Business Plan Format
<ol type="a" start="3">
<li>Vision statement</li>
<li>The people</li>
<li>Business profile</li>
<li>Economic assessment</li>
</ol>
</li>
<li>
Eight Steps to a Great Business Plan
<ol type="a" start="7">
<li>Set time aside to prepare</li>
<li>Focus and refine concept</li>
<li>Gather data</li>
<li>Outline the specifics of your business</li>
<li>Include experience</li>
<li>Put your plan into a compelling form</li>
<li>Enhance with graphics</li>
<li>Share draft with trusted advisers</li>
</ol>
</li>
<li>
Does Your Plan Include the Following Necessary Factors
<ol type="a" start="15">
<li>A sound business concept</li>
<li>Understanding your market</li>
<li>Healthy, growing and stable industry</li>
<li>Capable management</li>
<li>Able financial control</li>
<li>Consistent business focus</li>
<li>Mindset to anticipate change</li>
<li>Plans for online business</li>
</ol>
</li>
</ol>
</div>
</div>
<div class="overlay-session" id="abrahams">
<button onclick="hide_overlay('abrahams')" id="close-session">X</button>
<h3><b>Web Session by Matt Abrahams</b></h3>
<br>