This repository has been archived by the owner on Jun 15, 2018. It is now read-only.
forked from riverspirit/html5conf.in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
1079 lines (928 loc) · 49.3 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 lang="en">
<head>
<title>HTML5 Developer Conference 2014 | Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HTML5 Developer conference is a conference on front-end technologies, taking place on April 12 & 13 at Kochi, the queen of Arabian the sea. The event is sponsored and participated by organizations including Mozilla and Opera.">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,700,900' rel='stylesheet' type='text/css'>
<link rel="image_src" href="images/HTML5-Developer-Conference-2014.jpg"/>
<link rel="icon" type="image/png" href="images/favicon.png" />
<meta property="og:site_name" content="HTML5 Developer Conference 2014">
<meta property="og:title" content="HTML5 Developer Conference 2014">
<meta property="og:url" content="http://html5conf.in">
<meta property="og:description" content="HTML5 Developer conference is a web technology focused conference, Taking place on April 12 & 13 at Cochin, the queen of Arabian sea. Organized by Mozilla Kerala community & a few enthusiast.">
<meta property="og:image" content="http://html5conf.in/images/HTML5-Developer-Conference-2014.jpg">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="c-wrap">
<div class="c-container-wrap">
<div class="container c-header">
<div class="row">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="c-nav-wrap-one">
<div class="c-nav-wrap-two">
<div class="c-nav-wrap-three">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#c-navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand smoothScroll" href="#home"><img src="images/logo.png" alt="html5-dev-conf-logo"></a>
</div>
<div class="collapse navbar-collapse" id="c-navbar">
<ul class="nav navbar-nav">
<li class="c-nav-logo conf-logo-main" ><a href="#home" class="smoothScroll"><img src="images/logo.png" alt="html5-dev-conf-logo"></a></li>
<li id="c-sessions-nav"><a href="#sessions" class="smoothScroll">Sessions</a></li>
<li id="c-speakers-nav"><a href="#speakers" class="smoothScroll">Speakers</a></li>
<li id="c-schedule-nav"><a href="#schedule" class="smoothScroll">Schedule</a></li>
<li id="c-about-nav"><a href="#about" class="smoothScroll">About</a></li>
<li id="c-contact-nav"><a href="#contact" class="smoothScroll">Contact</a></li>
<li id="c-sponsors-nav"><a href="#sponsors" class="smoothScroll">Sponsors</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
<canvas id="canvas1" style="position: absolute;"></canvas>
<div class="c-container-wrap c-home-area" id="home">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<h4 class="c-home-area-first-h4">#onehashtag</h4>
<h1 id="masthead">#</h1>
<span class="follow-us-text">Follow us to get the latest updates </span><iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fhtml5defcon&width&layout=button_count&action=like&show_faces=false&share=true&height=21&appId=683332995016587" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<h4>HTML5 Developer Conference 2014</h4>
<p><b>The first ever HTML5/JS developer conference in Kerala is happening in Kochi on 12th and 13th April 2014.<b></p>
<p>Oh, and the first 30 people to register will get a cool <b>t-shirt</b>!<sup>*</sup></p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-xs-4 col-md-4 col-sm-4">
<div class="c-home-area-icons-wrap">
<img src="images/cal-icon.png" alt="html5-devconf-icon">
</div>
<h5>April 12-13</h5>
<h5>2014</h5>
</div>
<div class="col-lg-4 col-xs-4 col-md-4 col-sm-4">
<div class="c-home-area-icons-wrap">
<img src="images/time-icon.png" alt="html5-devconf-icon">
</div>
<h5>0900 - 1700</h5>
<h5>IST</h5>
</div>
<div class="col-lg-4 col-xs-4 col-md-4 col-sm-4">
<div class="c-home-area-icons-wrap">
<img src="images/loc-icon.png" alt="html5-devconf-icon">
</div>
<h5>XIME, Kalamassery</h5>
<h5>Kochi</h5>
</div>
</div>
</div>
</div>
<div class="chevron c-chevron-first c-chevron-white" id="chevron-top"></div>
<div class="chevron-below c-chevron-first-below c-chevron-white" id="chevron-top-inner"></div>
<div class="c-container-wrap c-register-button">
<div class="container">
<div class="row">
<p class="text-center"><a href="javascript:;" class="btn btn-lg btn-sold-out">SOLD OUT!</a></p>
</div>
</div>
</div>
<div class="c-container-wrap c-sessions" id="sessions">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Sessions</h2>
<h5>Snapshot of some of the sessions to be covered</h5>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-xs-6">
<img src="images/boot-web.png" alt="html5-devconf-session-logo">
<h4>The Convergence of the Browser and Operating System</h4>
<p>Nick Desaulniers talking about how the browser and the operating system are becoming indistinguishable to the end user.</p>
</div>
<div class="col-lg-3 col-md-3 col-xs-6">
<img src="images/web-graphics.png" alt="html5-devconf-session-logo">
<h4>The future of Web Graphics</h4>
<p>Shwetank Dixit talking about the future of Web graphics. He'll be discussing advanced techniques and technologies related to CSS, SVG, Canvas, WebGL etc</p>
</div>
<div class="col-lg-3 col-md-3 col-xs-6">
<img src="images/ember.png" alt="html5-devconf-session-logo">
<h4> EmberJs</h4>
<p>Syed Aqueel Haider talks about EmberJS. How Ember.js handles client side MVC? What do we gain from using it? Any gotchas to watch out for etc.</p>
</div>
<div class="col-lg-3 col-md-3 col-xs-6">
<img src="images/js-robotics-0.png" alt="html5-devconf-session-logo">
<h4>Javascript Robotics</h4>
<p>Praveen Sridhar talking about how web technologies like WebSockets & WebRTC can be used to extend the limitless possibilities of Open Hardware.</p>
</div>
</div>
</div>
</div>
<div class="chevron-u c-chevron-grey"></div>
<div class="chevron-u-below c-chevron-grey"></div>
<div class="c-container-wrap c-speakers" id="speakers">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Speakers</h2>
<h5>We hand pick our speakers to bring you the best possible lineup</h5>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6" id="speaker-info-0">
<div class="c-speaker-each text-center">
<div class="c-speaker-img-wrap">
<img src="images/shwetank-dixit.jpg" alt="html5-devconf-speaker">
</div>
<h4>Shwetank Dixit</h4>
<h6>Developer Evangelist</h6>
<h6>Opera</h6>
<div class="c-speaker-social-icons">
<ul>
<li class="c-speaker-tw">
<a href="http://twitter.com/shwetank">twitter</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6" id="speaker-info-1">
<div class="c-speaker-each text-center">
<div class="c-speaker-img-wrap">
<img src="images/nick-desaulniers.jpg" alt="html5-devconf-speaker">
</div>
<h4>Nick Desaulniers</h4>
<h6>ECMAScript Dermatologist</h6>
<h6>Mozilla</h6>
<div class="c-speaker-social-icons">
<ul>
<li class="c-speaker-tw">
<a href="https://twitter.com/LostOracle">twitter</a>
</li>
<li class="c-speaker-in">
<a href="http://www.linkedin.com/profile/view?id=119943281">linkedin</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6" id="speaker-info-2">
<div class="c-speaker-each text-center">
<div class="c-speaker-img-wrap">
<img src="images/praseed-pai.jpg" alt="html5-devconf-speaker">
</div>
<h4>Praseed Pai </h4>
<h6>Solutions Architect</h6>
<h6>UST Global</h6>
<div class="c-speaker-social-icons">
<ul>
<li class="c-speaker-fb">
<a href="#">facebook</a>
</li>
<li class="c-speaker-gp">
<a href="#">google+</a>
</li>
<li class="c-speaker-tw">
<a href="#">twitter</a>
</li>
<li class="c-speaker-in">
<a href="#">linkedin</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6" id="speaker-info-3">
<div class="c-speaker-each text-center">
<div class="c-speaker-img-wrap">
<img src="images/speaker-placeholder.jpg" alt="html5-devconf-speaker">
</div>
<h4>Shine Xavier</h4>
<h6>Technical Architect</h6>
<h6>UST Global</h6>
<div class="c-speaker-social-icons c-speaker-social-icons-empty">
<ul>
<li class="c-speaker-fb">
<a href="#">facebook</a>
</li>
<li class="c-speaker-gp">
<a href="#">google+</a>
</li>
<li class="c-speaker-tw">
<a href="#">twitter</a>
</li>
<li class="c-speaker-in">
<a href="#">linkedin</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="chevron c-chevron-white"></div>
<div class="chevron-below c-chevron-white"></div>
<div class="c-container-wrap c-schedule" id="schedule">
<div class="container">
<div class="row">
<h2>Schedule</h2>
<h5>Putting together the best for you in order</h5>
</div>
<div class="row">
<div class="c-schedule-header">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h4>Day 1</h4>
<h6>Saturday - 12 April 2014</h6>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h4>Day 2</h4>
<h6>Sunday - 13 April 2014</h6>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/shwetank-dixit.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
10:00am
</p>
<p class="c-schedule-session-name">
The future of Web Graphics
</p>
<p class="c-schedule-name">
Shwetank Dixit
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/nick-desaulniers.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
10:00am
</p>
<p class="c-schedule-session-name">
The Convergence of the Browser and Operating System
</p>
<p class="c-schedule-name">
Nick Desaulniers
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/praveen-sridhar.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
11:00pm
</p>
<p class="c-schedule-session-name">
Firefox OS - The mobile OS for web developers.
</p>
<p class="c-schedule-name">
Praveen Sridhar
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/haider.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
11:00am
</p>
<p class="c-schedule-session-name">
EmberJs
</p>
<p class="c-schedule-name">
Syed Aqueel Haider
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/praseed-pai.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
12:00pm
</p>
<p class="c-schedule-session-name">
Modern Javascript
</p>
<p class="c-schedule-name">
Praseed Pai
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/revath.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
12:00pm
</p>
<p class="c-schedule-session-name">
Modern Frontend Workflow
</p>
<p class="c-schedule-name">
Revath S Kumar
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/schedule-icon-03_07.png" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
01:00pm
</p>
<p class="c-schedule-session-name">
Lunch
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/schedule-icon-03_07.png" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
01:00pm
</p>
<p class="c-schedule-session-name">
Lunch
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/js-action.png" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
02:30pm
</p>
<p class="c-schedule-session-name">
Javascript: "Good Parts" in action
</p>
<p class="c-schedule-name">
Shine Xavier
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/shwetank-dixit.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
02:15pm
</p>
<p class="c-schedule-session-name">
Making the Web work Offline
</p>
<p class="c-schedule-name">
Shwetank Dixit
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/prakash-babu.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
04:00pm
</p>
<p class="c-schedule-session-name">
Developing apps for Google Glass using HTML5
</p>
<p class="c-schedule-name">
Prakash Babu
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/praveen-sridhar.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
03:15pm
</p>
<p class="c-schedule-session-name">
Javascript Robotics
</p>
<p class="c-schedule-name">
Praveen Sridhar
</p>
</div>
</div>
</div>
<div class="row c-schedule-row-each">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each schedule-empty-col">
<!-- Hollow man speaking about his invisible chimpanzee -->
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 c-schedule-each">
<div class="c-schedule-pic">
<img src="images/game-over.jpg" alt="html5-devconf-schedule-icon">
</div>
<div class="c-schedule-details">
<p class="c-schedule-time">
04:30pm
</p>
<p class="c-schedule-session-name">
THE END
</p>
<p class="c-schedule-name">
We socialize, network and say good byes; till the next time.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="chevron-u c-chevron-red"></div>
<div class="chevron-u-below c-chevron-red"></div>
<div class="c-container-wrap c-about" id="about">
<div class="container">
<div class="row c-about-header">
<div class="col-lg-12">
<h2>About</h2>
<h5>What this HTML5 Dev Conf is all about</h5>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p>A non-profit association of front end enthusiasts in Kerala is bringing you the first HTML5/JS Developer Conference in the region. Handpicked speakers are invited to take sessions on interesting topics. A nominal registration fee is implied to help with the organization cost as well as to filter out no-shows. Special discounted rates are available for students. Free entry is available for financially under-privileged students. To avail entry under this scheme, please contact us at [email protected] (Information regarding those who avail the free passes will be kept private). Free media passes are also available, contact us for details.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 c-about-point-wrap">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-2 c-about-point-icon">
<img src="images/about-icon-01_11.png">
</div>
<div class="col-md-10 col-sm-10 col-xs-10">
<h6>Learn some foo</h6> <!-- Terminal/IDE icon -->
<p>We are inviting the very best people to talk about the things they are best at. Learn about new technologies and practices.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 c-about-point-wrap">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-2 c-about-point-icon">
<img src="images/about-icon-02_11.png">
</div>
<div class="col-md-10 col-sm-10 col-xs-10">
<h6>First time in God's own country</h6> <!-- An icon to show networking b/w people -->
<p>HTML5 Dev Conf 2014 is the first of its kind event happening it Kerala and at a price that beats any tech conference happened anywhere in the world. Attendees from neighbouring states are also very much welcome :)</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 c-about-point-wrap">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-2 c-about-point-icon">
<img src="images/about-icon-03_11.png">
</div>
<div class="col-md-10 col-sm-10 col-xs-10">
<h6>Nothing beats free swags!</h6>
<p>We have cool goodies and swags for you. Swags can incredibly boost your geek street creds. On the side, we have also provide food and refreshment at the venue, so please don't pack your tiffin.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 c-about-point-wrap">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-2 c-about-point-icon">
<img src="images/about-icon-04_11.png">
</div>
<div class="col-md-10 col-sm-10 col-xs-10">
<h6>Network with geeks</h6>
<p>HTML5 Dev Conf 2014 is a great opportunity to meetup with like minded geeks and share ideas and tech gossip.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="chevron c-chevron-dark"></div>
<div class="chevron-below c-chevron-dark"></div>
<div class="c-container-wrap c-contact" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Contact</h2>
<h5>Questions about the event? We are more than happy to help!</h5>
</div>
</div>
<div class="row">
<div class="col-md-4">
<?php if(isset($emailSent) && $emailSent == true) { ?>
<p class="info">Your email was sent. Huzzah!</p>
<?php } else { ?>
<div class="desc">
<h6>Contact Form</h6>
<p class="desc">Please use the contact form below to send us any information we may need. It is required you place an e-mail, although if you do not need us to respond feel free to input [email protected].</p>
</div>
<div id="contact-form">
<?php if(isset($hasError) || isset($captchaError) ) { ?>
<p class="alert">Error submitting the form</p>
<?php } ?>
<form id="contact-us" action="contact.php" method="post">
<div class="formblock">
<label>Your name</label>
<input type="text" name="contactName" id="contactName" value="<?php if(isset($_POST['contactName'])) echo $_POST['contactName'];?>" class="requiredField" placeholder="Enter name here" />
<?php if($nameError != '') { ?>
<br /><span class="error"><?php echo $nameError;?></span>
<?php } ?>
</div>
<div class="formblock">
<label>Your E-mail</label>
<input type="text" name="email" id="email" value="<?php if(isset($_POST['email'])) echo $_POST['email'];?>" class="requiredField email" placeholder="Enter e-mail here" />
<?php if($emailError != '') { ?>
<br /><span class="error"><?php echo $emailError;?></span>
<?php } ?>
</div>
<div class="formblock">
<label>Your Message</label>
<textarea name="comments" id="commentsText" class="requiredField" placeholder="Message:"><?php if(isset($_POST['comments'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['comments']); } else { echo $_POST['comments']; } } ?></textarea>
<?php if($commentError != '') { ?>
<br /><span class="error"><?php echo $commentError;?></span>
<?php } ?>
</div>
<input name="submit" type="submit" class="btn btn-large" value="Send us Mail!">
<input type="hidden" name="submitted" id="submitted" value="true" />
</form>
</div>
<?php } ?>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<h6>HTML5 DevConf 2014</h6>
<p>For the first time ever, a web developer conference is coming to Kerala. Attendees from neighbouring states are also most welcome to attend. Organized by an independent group of peers, HTML5 Dev Conf is a non profit event, but a nominal registration fee is put in place for controlling traffic and avoiding no-shows. Special discounted rates are available for students.</p>
<h6 class="c-contact-below-h6">Contact Info</h6>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<p class="c-no-margin-p"><i>(+91)</i> 944 779 6617</p>
<p class="c-no-margin-p"><i></i> </p>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<h6>The Venue</h6>
<p class="c-no-margin-p">Xavier Institute of Management & Entrepreneurship (XIME)</p>
<p class="c-no-margin-p">HMT PO, Kalamassery</p>
<p class="c-no-margin-p">Kochi</p>
<p>KL, India</p>
<p>HTML5 Dev Conf 2014 is being held at an easy to reach location in Kochi, Kerala. If you are coming from outside Kerala and would need us to arrange your stay while in Kochi, please let us know and we will book a room for you. (PS: You will need to pay the room rent while checking in)</p>
<h6 class="c-contact-below-h6">Get updates on Facebook</h6>
<div class="c-socio-contact">
<a class="c-socio-fb" href="https://facebook.com/MozillaKerala">facebook</a>
<a class="c-socio-gp" href="https://plus.google.com/114831280089581546580/">google+</a>
<a class="c-socio-tw" href="https://twitter.com/MozillaKerala">twitter</a>
</div>
<h6 class="c-contact-below-h6">RSVP on Social Media</h6>
<div class="c-socio-contact">
<a class="c-socio-fb" href="https://facebook.com/events/1422207844694782/">facebook</a>
<a class="c-socio-gp" href="https://plus.google.com/events/cenu2oppbgqk2jt0jckv4f4hsgk">google+</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 c-contact-map-wrap">
<div class="c-contact-map-inner-wrap">
<h6>The Location</h6>
<div id="map_canvas" style="width:100%; height:345px;"></div>
</div>
</div>
</div>
</div>
</div>
<div class="chevron-u c-chevron-first c-chevron-white"></div>
<div class="chevron-u-below c-chevron-first-below c-chevron-white"></div>
<div class="c-container-wrap c-sponsors" id="sponsors">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Sponsors</h2>
<h5>Many thanks to all those who are supporting and backing us up</h5>
</div>
</div>
<div class="row c-sponsor-row-each">
<div class="col-md-3">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/mozilla_wordmark.png" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
</div>
<div class="col-md-3">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/Opera-logo.png" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
</div>
<div class="col-md-3">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/toobler.jpg" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
</div>
<div class="col-md-3">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/logo-M.png" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
</div>
<div class="col-md-12">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/dm_logo.png" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
<div class="row sponsor-with-margin">
<div class="col-md-4 col-sm-6 col-xs-6">
<img src="images/tt_logo.jpg" alt="html5-devconf-sponsor" class="html5-devconf-sponsor-logo">
</div>
</div>
</div>
</div>
<div class="row c-sponsor-button">
<a class="btn btn-lg" data-toggle="modal" data-target="#c-modal-sponsor">Become a sponsor</a>
<a class="btn btn-lg" data-toggle="modal" data-target="#c-modal-sponsor">Partner with us</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="c-modal-sponsor" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Sponsorship/Partnership</h4>
</div>
<div class="modal-body">
<p>Want to sponsor the event? Thinking about partnering with us?</p>
<p>Please contact <a href="mailto:[email protected]"> [email protected]</a> with sponsorship/partnership proposals and enquiries, and we'll get right back to you.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="c-modal-sponsors" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Our Sponsors and Partners</h4>
</div>
<div class="modal-body">
<h6>Platinum Sponsor</h6>
Mozilla
<h6>Executive Sponsor</h6>
Opera
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="c-modal-credits" tabindex="-1" role="dialog" aria-labelledby="myModalLabelcredits" aria-hidden="true">
<div id="credits-dialog" class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabelcredits">Credits</h4>
</div>
<div class="modal-body credits-container">
<p>This event is brought to you with ♥ by:</p>
<p>
<p class="credits-name">
<a href="https://www.facebook.com/saurabhx" title="jsx" class="credits-name-link credits-name-link-jsx" data-mouseover="jsx" id="info-jsx">
<img src="images/credits/jsx.png" alt="jsx logo" />
</a>
</p>
<p class="credits-info">&</p>
<p class="credits-contact">
<a href="https://www.facebook.com/ArunHaridas6" title="Arun Haridas" class="credits-name-link" data-mouseover="Arun Haridas" id="info-arun">
<img src="images/credits/arun.jpg" alt="Arun Haridas" /></a>
<a href="https://www.facebook.com/theCoderDotIn" title="Rahul Ramesh" class="credits-name-link" data-mouseover="Rahul Ramesh" id="info-rahul">
<img src="images/credits/rahul.jpg" alt="Rahul Ramesh" /></a>
<a href="https://www.facebook.com/MidhunManojkumar" title="Midhun Manoj" class="credits-name-link" data-mouseover="Midhun Manoj" id="info-midhun">
<img src="images/credits/midhun.jpg" alt="Midhun Manoj" />
</a>
<a href="https://www.facebook.com/praveenshridhar" title="Praveen Sridhar" class="credits-name-link" data-mouseover="Praveen Sridhar" id="info-praveen">
<img src="images/credits/praveen.jpg" alt="Praveen Sridhar" /></a>
<a href="https://www.facebook.com/abidaboobaker" title="Abid Aboobaker" class="credits-name-link" data-mouseover="Abid Aboobaker" id="info-abid">
<img src="images/credits/abid.jpg" alt="Abid Aboobaker"/></a>
<a href="https://www.facebook.com/anushbmx" title="Anush Anilkumar" class="credits-name-link" data-mouseover="Anush Anilkumar" id="info-anush">
<img src="images/credits/anush.jpg" alt="Anush Anilkumar" /></a>
<a href="https://www.facebook.com/inkwash" title="Ashwin Krishnan" class="credits-name-link" data-mouseover="Ashwin Krishnan" id="info-ashwin">
<img src="images/credits/ashwin.jpg" alt="Ashwin Krishnan" /></a>
<a href="https://www.facebook.com/divine.shine" title="Shine Nelson" class="credits-name-link" data-mouseover="Shine Nelson" id="info-shine">
<img src="images/credits/shine.jpg" alt="Shine Nelson" /></a>
<a href="https://www.facebook.com/sirajul.11" title="Sirajul Muneer" class="credits-name-link" data-mouseover="Sirajul Muneer" id="info-siraj">
<img src="images/credits/siraj.jpg" alt="Sirajul Muneer" /></a>
<a href="https://www.facebook.com/blazingbinzzz" title="Binoy Balu" class="credits-name-link" data-mouseover="Binoy Balu" id="info-binoy">
<img src="images/credits/binoy.jpg" alt="Binoy Balu" /></a>
</p>
<p class="selected-person-info-contain" id="selected-person-info-contain"></p>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="c-container-wrap c-footer">
<div class="container">
<div class="row c-footer-top">
<div class="col-md-12">
<p class="pull-left">
<a class="c-footer-logo smoothScroll" href="#home"><img src="images/logo.png"></a>
<p>HTML5 Dev Conf 2014 is the first of its kind event taking place in Kerala organized by a non-profit group aimed to bring together the HTML5/JS enthusiasts in South India together to connect and share.</p>
<p>© 2014. All Rights Reserved.</p>
<p> </p>
<p>Terms and conditions: <i>* Free t-shirts available until stocks last. If your company would like to sponsor t-shirts, please mail [email protected]. The organizers reserve the right to make changes to schedule and plans without prior notice. If the event is cancelled for any reason, your registration fee will be refunded.</i></p>
</p>
<p class="pull-right c-to-top-button">
<a href="#home" class="smoothScroll">Top <img src="images/to-top-button_40.png"></a>
</p>
</div>
</div>
<div class="row c-footer-bottom">
<div class="col-md-12">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#" data-target="#c-modal-sponsor" data-toggle="modal">Become a sponsor</a></li>
<li><a href="#" data-target="#c-modal-sponsors" data-toggle="modal">Sponsors</a></li>
<li><a href="#" data-target="#c-modal-credits" data-toggle="modal">Credits</a></li>
</ul>
<p class="text-right" style="margin-top:-10px;">Designed by <a href="http://codeyssus.com/" target="_blank">Codeyssus Labs</a></p>
</div>
</div>
</div>
</div>
<div class="c-container-wrap c-footer-end">
<div class="container">
<div class="row">
</div>
</div>
</div>
<div class="c-container-wrap">
<div class="container">
<div class="row">
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
$(document).ready(function() {
$('form#contact-us').submit(function() {
$('form#contact-us .error').remove();
var hasError = false;
$('.requiredField').each(function() {
if($.trim($(this).val()) == '') {
var labelText = $(this).prev('label').text();
$(this).parent().append('<span class="error">Your forgot to enter your '+labelText+'.</span>');
$(this).addClass('inputError');
hasError = true;
} else if($(this).hasClass('email')) {
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if(!emailReg.test($.trim($(this).val()))) {
var labelText = $(this).prev('label').text();
$(this).parent().append('<span class="error">Sorry! You\'ve entered an invalid '+labelText+'.</span>');
$(this).addClass('inputError');
hasError = true;
}
}
});
if(!hasError) {
var formInput = $(this).serialize();
$.post($(this).attr('action'),formInput, function(data){
$('form#contact-us').slideUp("fast", function() {
$(this).before('<p class="tick"><strong>Thanks!</strong> Your email has been delivered. Huzzah!</p>');
});
});
}