forked from pehshuwei/barcamp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
686 lines (620 loc) · 25.8 KB
/
index.html
File metadata and controls
686 lines (620 loc) · 25.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BarCamp Cyberjaya 2019</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans" rel="stylesheet">
<link href="img/favicon.ico" rel="shortcut icon">
<meta charset="UTF-8">
<meta content="BarCamp Cyberjaya 2019" property="og:title">
<meta content="https://www.barcampcyberjaya.org/" property="og:url">
<meta content="https://www.barcampcyberjaya.org/img/opengraphimg.jpg" property="og:image">
<meta content="BarCamp is a user-generated unconference focused around technology. They are open, participatory workshop-events, the content of which is provided by participants. Happening on 5th August 2017." property="og:description">
<meta name="theme-color" content="#07223D">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "BarCamp Cyberjaya 2019",
"startDate" : "2019-08-17T09:00+0800",
"endDate" : "2019-08-17T18:00+0800",
"url" : "https://www.barcampcyberjaya.org/",
"location" : {
"@type" : "Place",
"sameAs" : "http://fci.mmu.edu.my",
"name" : "Faculty of Computing & Informatics",
"address" : "Multimedia University, Persiaran Multimedia, 63100 Cyberjaya, Selangor"
},
"description": "Unconference that focuses on technology, programming, and entrepreneurship.",
"image": "https://www.barcampcyberjaya.org/img/opengraphimg.jpg"
}
</script>
<script src="js/smooth-scroll.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
</head>
<body>
<!-- navigation -->
<nav class="page_scroll">
<div class="drawer">
<div class="drawer-container">
<a data-scroll href="#home" onClick="toggleDrawer()">Home</a>
<a data-scroll href="#about" onClick="toggleDrawer()">About</a>
<a data-scroll href="#venue" onClick="toggleDrawer()">Venue</a>
<a data-scroll href="#faq" onClick="toggleDrawer()">FAQ</a>
<!-- <a data-scroll href="#proposed-talks" onClick="toggleDrawer()">Call for Speakers</a>
<a data-scroll href="#exhibitors" onClick="toggleDrawer()">Call for Exhibitors</a> -->
<a data-scroll href="#agenda" onClick="toggleDrawer()">Our Sponsors</a>
</div>
<div class="scrim" onClick="toggleDrawer()"></div>
</div>
<div class="nav-bar">
<ul id="nav">
<li id="nav-home">
<a data-scroll href="#home">HOME</a>
</li>
<li id="nav-about">
<a data-scroll href="#about">ABOUT</a>
</li>
<li id="nav-venue">
<a data-scroll href="#venue">VENUE</a>
</li>
<li id="nav-venue">
<a data-scroll href="https://www.eventbrite.com/e/barcamp-cyberjaya-2019-tickets-64921018514" target="_blank" >GET TICKETS</a>
</li>
<li id="nav-venue">
<a data-scroll href="http://itsbarcamp.herokuapp.com/login" target="_blank">VOTE FOR TALKS</a>
</li>
<li id="nav-faq">
<a data-scroll href="#faq">FAQ</a>
</li>
<!-- <li id="nav-proposed-talks">
<a data-scroll href="#proposed-talks">CALL FOR SPEAKERS</a>
</li> -->
<!-- <li id="nav-sponsor-us">
<a data-scroll href="#sponsor-us">CALL FOR SPONSORS</a>
</li> -->
<!-- <li id="nav-exhibitors">
<a data-scroll href="#exhibitors">CALL FOR EXHIBITORS</a>
</li> -->
<li id="nav-exhibitors">
<a data-scroll href="#sponsors">BARCAMP`19 SPONSORS</a>
</li>
</ul>
</div>
<div class="nav-bar-mobile">
<svg onClick="toggleDrawer()" viewBox="0 0 24 24" preserveAspectRatio="xMidYMid meet">
<g>
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" fill="#FFF"></path>
</g>
</svg>
</div>
</nav>
<div class="header">
<ul id="countdown-wrapper" >
<div class="title">
<!-- <h1>BarCamp Cyberjaya</h1> -->
<img src="img/barcamp-logo.png">
<h3>
<ul>
<li>Date: 17th August 2019</li>
<li>Time: 12.00 - 7.00 p.m</li>
<li>Venue: Multipurpose Hall, Multimedia University</li>
</ul>
</h3>
</div>
<div class="wrap">
<div class="countdown">
<div class="bloc-time days" data-init-value="0">
<span class="count-title">DAYS</span>
<div class="figure hours hours-1">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
<div class="figure hours hours-2">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
</div>
<div class="bloc-time hours" data-init-value="0">
<span class="count-title">HOURS</span>
<div class="figure min min-1">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
<div class="figure min min-2">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
</div>
<div class="bloc-time min" data-init-value="0">
<span class="count-title">MINUTES</span>
<div class="figure sec sec-1">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
<div class="figure sec sec-2">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
</div>
<div class="bloc-time sec" data-init-value="0">
<span class="count-title">SECONDS</span>
<div class="figure sec sec-1">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
<div class="figure sec sec-2">
<span class="top">0</span>
<span class="top-back">
<span>0</span>
</span>
<span class="bottom">0</span>
<span class="bottom-back">
<span>0</span>
</span>
</div>
</div>
</div>
</div>
</ul>
<div class="btn-container">
<!--REGISTER-->
<a href="https://www.eventbrite.com/e/barcamp-cyberjaya-2019-tickets-64921018514" target="_blank" rel="noopener"><button class="btn btn-light register">GET TICKETS</button></a>
<!--VOTE-->
<a href="http://itsbarcamp.herokuapp.com/login" target="_blank" rel="noopener"><button class="btn btn-light register">VOTE FOR TALKS</button></a>
</div>
<div id="slogan" class="row">
<div class="quoteslide">
<div class="quote show">"The term 'BarCamp' has nothing to do with alcohol but everything to do with high spirits - a spirit of sharing ideas in a free and fun environment." - Outlook Business</div>
<div class="quote">"A gathering of folk who, in one way or another, aim to make the world a better place." - Dr Koh Niak Wu</div>
<div class="quote">"Barcamp Cyberjaya its one amazing adhoc event where we see young mind share their idea and get it feedback with industry fellow." - Mr. Curry Khoo</div>
</div>
</div>
</div>
<!-- about -->
<div id="about" class="container white-container">
<div class="row">
<h1 class="description">Unlike typical conferences, BarCamp has no preset of speakers. BarCamp is a user-generated conference that brings people together to share their passion!</h1>
</div>
<div class="row">
<div class="two-column">
<p><h3>You can choose to be an audience or speaker</h3>
<span class="sub">You are welcome to share your knowledge or experiences. Speakers are encouraged to talk about technology, entrepreneurship, education or any other topics as long as it does not touch sensitive topics like politics and religions.</span></p>
<p><h3>You can choose who get to speak</h3>
<span class="sub">Voting session will be held for proposed topics.</span>
<br><br>
<span class="sub">That means, the speaker lineup is generated by everyone who comes(including you) on that day itself. We can't wait to see what everyone will share and learn in this BarCamp!</span>
</p>
<p><h3>You can choose which talks to attend</h3>
<span class="sub">Multiple talks will be held on the same timetrack, choose the one that you like! You are encouraged to leave the session quietly if you would like to exit a talk at any time.</span></p>
</div>
<div class="two-column">
<p><h3>Talks Awards</h3>
<span class="sub">Cash voucher will be given out for the top 3 speakers! Not a competition but this is to encourage participants to demonstrate their best presentation and impromptu skills!</span></p>
<p><h3>Boardgames</h3>
<span class="sub">None of the talks interest you? Stay in the lobby and play boardgames!</span></p>
<p><h3>No worry about money</h3>
<span class="sub">Registration is FREE! Lunch, tea-time and water are provided! Tshirt will be given to those who registered earlier!</span></p>
<p><h3>What is more?</h3>
<span class="sub">There is LUCKYDRAW for participants this year! Arduino Beginner Kits and power banks will be given out!</span></p>
</div>
</div>
<div>
</div>
</div>
<!-- venue -->
<div id="venue" class="container">
<div class="row">
<h1>Venue</h1>
<div id="maps"><iframe src="https://www.google.com/maps/d/u/0/embed?mid=1EmRllrGBXXlx38W93HtaWxILN7vyF_KS" width="640" height="480"></iframe></div>
</div>
</div>
<!--Agenda-->
<div id="agenda" class="container white-container">
<div class="row">
<h1>Agenda</h1>
<table class="w3-table-all">
<thead>
<tr class="w3-red">
<th>TIME</th>
<th>BARCAMP</th>
<th>EXHIBITION</th>
</tr>
</thead>
<tr>
<td>12:00 - 12:45</td>
<td>Check In / Lunch </td>
<td rowspan="2">Exhibition Peak Session</td>
</tr>
<tr>
<td>12:45 - 13:30</td>
<td>Propose Topic / Networking / Solat</td>
</tr>
<tr>
<td>13:30 - 13:45</td>
<td>Lightning talk</td>
<td rowspan="6">Inactive Session</td>
</tr>
<tr>
<td>14:15 - 15:00</td>
<td>
Session #1
<ul>
<li>Future of Work by Raveesh Dewan(CQMX0001/ FCI Lecture Hall) </li>
<li>October CMS -- The open semi flat-file CMS by Nicolas Yip Z. W.(CNMX1002/ XR1002)</li>
<li>How To extract Open Data from Government PDFs + sites by Michael Leow(CNMX1003/ XR1003) </li>
<li>The IOT Generation and Its Future Development by Mohamed Affian (CNMX1004/ XR1004) </li>
<li>We're Running a Demo D&D (5e) Session for anyone interested by Willie Poh (MPH) </li>
</ul>
</td>
</tr>
<tr>
<td>15:00 - 15:05</td>
<td>Move Around</td>
</tr>
<tr>
<td>15:05 - 15:50</td>
<td>Session #2
<ul>
<li>Preside Platform Deep-Dive by Alex Skinner(CQMX0001/ FCI Lecture Hall) </li>
<li>Deploy Your App to Google App Engine in 1 minute by Tevanraj Elengoe(CNMX1003/ XR1003) </li>
<li>How to Get a Job In China and Why I Burnt It by Anonoz Chong(CNMX1004/ XR1004) </li>
<li>We're Running a Demo D&D (5e) Session for Anyone Interested by Willie Poh (MPH) </li>
<li>Malaya, Natural Language Toolkit Bahasa Malaysia Powered by Husein Zolkepli(CNMX1005/ XR1005)</li>
</ul>
</td>
</tr>
<tr>
<td>15:50 - 15:55</td>
<td>Move Around</td>
</tr>
<tr>
<td>15:55 - 16:40</td>
<td>Session #3
<ul>
<li>Flutter for Mobile App and New Front-End Technology by Mustofa Ghaleb Amami(CQMX0001/ FCI Lecture Hall) </li>
<li>OpenPromises: Civic Engagement through Technology by Seah Eu Hen (CNMX1003/ XR1003) </li>
<li>Mental Illness - Those which You Can't Find on Google by Tey Wei Long(CNMX1004/ XR1004) </li>
<li>We're Running a Demo D&D (5e) Session for Anyone Interested by Willie Poh (MPH) </li>
</ul>
</td>
</tr>
<tr>
<td>16.40 - 17:00</td>
<td>Teatime / Solat</td>
<td>Exhibition Peak Session</td>
</tr>
<tr>
<td>17:15 - 18:00</td>
<td>Session #4
<ul>
<li>A Career Journey of an IT Architect by Chris Par (CQMX0001/ FCI Lecture Hall) </li>
<li>What is DevOps? by Suyash Mohan (CNMX1003/ XR1003)</li>
<li>Cyber Consumer Redefinition by Siraj Jalil(CNMX1004/ XR1004) </li>
<li>Digitalising SME Through Online : The Challenges vs Strategies by Abd Azharee Bin Abdul Wahid (CNMX1005/ XR1005)</li>
<li>We're Running a Demo D&D (5e) Session for Anyone Interested by Willie Poh (MPH)</li>
</ul>
</td>
<td rowspan="3">Inactive Session</td>
</tr>
<tr>
<td>18:00 - 18.05</td>
<td>Move Around</td>
</tr>
<tr>
<td>18:05 - 18:50</td>
<td>Session #5
<ul>
<li>Easy cloud management & web development with RunCloud by Habib (CQMX0001/ FCI Lecture Hall) </li>
<li>How to be a programmer - no CS Degree, no Coding Bootcamp! by Amirul Abu (CNMX1003/ XR1003)</li>
<li>Introduction to Reinforcement Learning by Too Seng Wei (CNMX1004/ XR1004)</li>
<li>Introduction to Convolution Neural Network by Ching June Hao (CNMX1005/ XR1005)</li>
<li>We're Running a Demo D&D (5e) Session for Anyone Interested by Willie Poh (MPH)</li>
</ul>
</td>
</tr>
<tr>
<td>18:50 - 19:20</td>
<td>Lightning talk / Lucky draw / Prize Giving Session</td>
</tr>
<tr>
<td>19:20</td>
<td colspan="2">End</td>
</tr>
</table>
</div>
</div>
<div id="how-to" class="container">
<div class="row">
<h1>How to Get to MMU</h1>
<div id="public" class="two-column">
<h2>Public Transport</h2>
<ol>
<li>Take KLIA Transit to <b>Putrajaya/Cyberjaya</b> station.</li>
<li>Take taxi to Multimedia University Faculty of Computing and Informatics, or</li>
<li>Take the bus Nadi Putra 520 to MMU.</li>
</ol>
</div>
<div id="driving" class="two-column">
<h2>Driving</h2>
<ol>
<li>Just find MMU Cyberjaya on your navigation app.</li>
<li>Once you are inside there will be road signs showing you where to park!</li>
</ol>
</div>
</div>
</div>
<!-- past barcamp photos -->
<div id="past" class="container white-container">
<div class="slides">
<div class="image show"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<a class="hover" href="http://bit.ly/bcpastphotos" target="_blank" rel="noopener">PAST BARCAMP CYBERJAYA</a>
</div>
</div>
<!-- faq -->
<div id="faq" class="container white-container">
<div class="row">
<h1>Frequently Asked Questions</h1>
<h2 class="highlight">What can we talk about in BarCamp?</h2>
<p>Speakers are encouraged to conduct sessions that are related to technology, entrepreneurship, and education (because we are
in a university in Cyberjaya right?). But, you can also talk about any other topics that you like, as long as other
participants vote on it.</p>
<p>Speakers should refrain from touching on sensitive topics such as politics and religions.</p>
<h2 class="highlight">How many tracks are there, and how long is each session?</h2>
<p>There will be a varying number of simultaneous tracks. Each session will be roughly 45 minutes long.</p>
<h2 class="highlight">What are the themes for this year?</h2>
<p>There are a few focus topics this year, namely:</p>
<ul>
<li>Machine Learning</li>
<li>Web</li>
<li>AR/MR/VR</li>
<li>Blockchain</li>
<li>Cloud</li>
<li>Mobile Application</li>
<li>DevOps</li>
<li>IoT</li>
</ul>
<p>Don't worry if your talk doesn't fall into any of these categories, you can still propose a talk and we'll leave the participants to vote on it!</p>
<h2 class="highlight">What equipments are provided and what do I need to bring?</h2>
<p>Each MMU FCI classroom is equipped with:</p>
<ul>
<li>VGA Projector</li>
<li>Wi-Fi Access Point</li>
<li>Power socket</li>
<li>Whiteboard and markers</li>
</ul>
<p>If your device (such as MacBook or iPads) does not have VGA output, please bring your own VGA adapter.</p>
<h2 class="highlight">What about food?</h2>
<p>There will be free lunch provided. Also, if you signed up as a vegan, we will do our best to cater to your needs.</p>
</div>
</div>
<!--Call for speakers-->
<!-- <div id="proposed-talks" class="container">
<div class="row">
<h1>Call for Speakers</h1>
<p>Come share your awesome ideas with us. We welcome all topics related to technology and the web. Refer to our <a href="#faq">FAQ</a> for more details about submitting a talk.</p>
<form id="speaker-form" class="flex" name="speaker-form">
<input class="input" type="text" name="name" placeholder="Full Name" required>
<input class="input" type="text" name="background" placeholder="Speaker Profile/Background Details" required>
<input class="input" type="text" name="title" placeholder="Title of Talk" required>
<div>
<select class="input" name="category" required>
<option value="" disabled selected>Select Talk Category</option>
<option value="Machine Learning">Machine Learning</option>
<option value="Web">Web</option>
<option value="AR/MR/VR">AR/MR/VR</option>
<option value="Blockchain">Blockchain</option>
<option value="Cloud">Cloud</option>
<option value="Mobile Application">Mobile Application</option>
<option value="DevOps">DevOps</option>
<option value="IoT">IoT</option>
<option value="Others" onclick="showOthers()">Others</option>
</select>
</div>
<div class="others">Other Category: <input type="text" class="input" name="other-category" placeholder="Please Specify Category of Talk"></div>
<div>
<select class="input" name="difficulty" required>
<option value="" disabled selected>Select Talk Difficulty</option>
<option value="Easy">Easy</option>
<option value="Intermediate">Intermediate</option>
<option value="Hard">Hard</option>
</select>
</div>
<textarea class="input" name="description" placeholder="Description of Talk" required></textarea></br>
<input class="input" type="text" name="contact" placeholder="Email">
<input class="input" type="text" name="diet" placeholder="Dietary Restriction, If Any." required>
<input class="input" type="text" name="tshirt" placeholder="T-shirt Size" required>
<button class="btn btn-light" type="submit" name="submit" id="submit">Submit</button>
<p class="success-message-speaker"></p>
<p class="small center">View proposed talks 👇</p>
</form>
<a href="https://docs.google.com/spreadsheets/d/1v7SWJpGnEjey5gCtuZ_KKymlzI0LEyndDQOErLdrCCw/edit?usp=sharing" target="_blank" rel="noopener"><button class="btn btn-light btn-sm">View proposed topics</button></a>
</div>
</div> -->
<!--Sponsor us-->
<!-- <div id="sponsor-us" class="container white-container">
<div class="row">
<h1>Call for Sponsors</h1>
<p>Since BarCamp Cyberjaya is free for everyone, we need your help to make it
possible. We have come a long way, but we still need your support. Your
generous contribution will help us extend our mission to empower students
and young professionals through technology.
<br><br>
BarCamp Cyberjaya is an opportunity to showcase your company’s products and
services, attract young talents and increase market share.
</p>
<div class="center">
<button class="btn btn-dark btn-download btn-sm" ><a href="/SponsorhipProposal_BarCampCyberjaya.pdf" download>Sponsorship Proposal</a></button>
<br>
Have any inquiries? Drop us an email to <a href="mailto:itsoc.mmu@gmail.com">itsoc.mmu@gmail.com</a>
</div>
</div>
</div> -->
<!--Call for exhibitors-->
<!-- <div id="exhibitors" class="container white-container">
<div class="row">
<h1>Call for Exhibitors</h1>
<p>Have something that you would like to share to the world? Showcase your next big idea and innovation at BarCamp Cyberjaya.</p>
<form id="exhibitor-form" class="flex" name="exhibitor-form">
<input class="input" type="text" name="name" placeholder="Full Name" required>
<input class="input" type="text" name="organization" placeholder="University/Organization" required>
<input class="input" type="text" name="contact" placeholder="Contact Number" required>
<input class="input" type="text" name="email" placeholder="Email" required>
<input class="input" type="text" name="diet" placeholder="Dietary Restriction, If Any." required>
<input class="input" type="text" name="tshirt" placeholder="T-shirt Size" required>
<input class="input" type="text" name="project-name" placeholder="Project Name" required>
<input class="input" type="text" name="project-desc" placeholder="Project Description" required>
<input class="input" type="text" name="project-link" placeholder="Project Link" required>
<div>
<select class="input" name="purpose" required>
<option value="" disabled selected>What Are You Looking For?</option>
<option value="Exposure">Exposure</option>
<option value="Business Opportunity">Business Opportunity</option>
<option value="Others" onclick="showOthers1()">Others</option>
</select>
</div>
<div class="others">Others: <input type="text" class="input" name="other-purpose" placeholder="Please Specify"></div>
<button class="btn btn-light" type="submit" name="submit" id="submit">Submit</button>
<p class="success-message-exhibitor"></p>
<div class="center">
<button class="btn btn-dark btn-download btn-sm" ><a href="/Code Of Conduct.pdf" download>Code of Conduct</a></button>
</div>
</form>
</div>
</div> -->
<!-- sponsors & partners -->
<div id="sponsors" class="container">
<!-- sponsor title -->
<div class="row">
<h1>Our Sponsors</h1>
</div>
<!-- sponsors logo -->
<div class="row logo-list">
<!-- PLATINUM -->
<!-- Binary.com -->
<div class="logo">
<a href="https://www.binary.com" target="_blank" rel="noopener"><img src="img/binary.com.png"/></a>
</div>
<!-- Joget -->
<div class="logo">
<a href="https://www.joget.org/" target="_blank" rel="noopener"><img src="img/joget.png"/></a>
</div>
<!--Pixl8-->
<div class="logo">
<a href="https://www.pixl8.co.uk/" target="_blank" rel="noopener"><img src="img/pixl8.png"></a>
</div>
<!--RunCloud-->
<div class="logo">
<a href="https://runcloud.io/" target="_blank" rel="noopener"><img src="img/runcloud.png"></a>
</div>
</div>
<!-- partner title -->
<!-- <div class="row">
<h1 class="title">Media Partners</h1>
</div>
partners logo
<div class="row logo-list">
<div class="logo">
<a href="http://radio.mmu.edu.my/" target="_blank" rel="noopener"><img src="img/radiommu.png"/></a>
</div>
</div> -->
</div>
<footer class="white-container-container">
<div class="row">
<div class="center">
Organised by <b><a href="https://www.itsociety.rocks/" target="_blank" rel="noopener">IT Society MMU Cyberjaya</a></b>
</div>
</div>
</footer>
<script src="js/exhibitor-form.js"></script>
<script src="js/speaker-form.js"></script>
<script>
const others = Array.from(document.querySelectorAll('.others'));
function showOthers(){
others[0].style.display = 'block';
}
function showOthers1(){
others[1].style.display = 'block';
}
</script>
<script type="text/javascript">
var slides = document.querySelectorAll('.slides .image');
var currentSlide = 0;
var slideInterval = setInterval(nextSlide, 2000);
var map;
function nextSlide() {
slides[currentSlide].className = 'image';
currentSlide = (currentSlide + 1) % slides.length;
slides[currentSlide].className = 'image show';
}
var quoteslide = document.querySelectorAll('.quoteslide .quote');
var qcurrentSlide = 0;
var qslideInterval = setInterval(nextQuoteSlide, 4000);
var qmap;
function nextQuoteSlide() {
quoteslide[qcurrentSlide].className = 'quote';
qcurrentSlide = (qcurrentSlide + 1) % quoteslide.length;
quoteslide[qcurrentSlide].className = 'quote show';
}
function toggleDrawer() {
document.querySelector('.drawer').classList.toggle('show')
}
smoothScroll.init();
</script>
<!-- Live Chat Widget -->
<script data-align="right" data-overlay="false" id="keyreply-script" src="//keyreply.com/chat/widget.js" data-color="#E4392B" data-apps="JTdCJTIyZmFjZWJvb2slMjI6JTIyMjA2MzIyODQ5NDEyNTQ2JTIyLCUyMmVtYWlsJTIyOiUyMml0c29jLm1tdUBnbWFpbC5jb20lMjIlN0Q="></script>
<script type="text/javascript" src="js/countdown.js"></script>
</body>
</html>