-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamification.html
1679 lines (1461 loc) · 77.9 KB
/
gamification.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0040)http://www.oceventmanager.com/g-homepage -->
<html class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths"><!--<![endif]--><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Gamification</title>
<meta name="title" content="Gamification ">
<meta name="keywords" content="">
<meta name="author" content="One Communication - www.onecom.no">
<meta name="publisher" content="� 2008 - One Communication">
<meta name="copyright" content="� 2008 - One Communication">
<meta name="distribution" content="global">
<meta name="revisit-after" content="2 days">
<meta name="robots" content="index,follow,noarchive">
<meta name="googlebot" content="noarchive">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<link rel="shortcut icon" href="img/current/favicon.ico">
<link rel="image_src" href="img/icon_fav_120x90.png">
<link rel="apple-touch-icon" href="img/icon_fav_57x57.png">
<meta name="apple-touch-fullscreen" content="yes">
<base target="_blank" />
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<link href="css/mediaelementplayer.css" rel="stylesheet" type="text/css">
<script src="js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/jquery.countdown.js" type="text/javascript"></script>
<script type="text/javascript">
document.addEventListener("deviceready", onDeviceReady, false);
var css_url = localStorage.url+"resources/gamification/css/appearance.css.php?eid="+localStorage.event_id;
document.write('<link rel="stylesheet" type="text/css" href="'+css_url+'">');
function onDeviceReady() {
//var db = openDatabase('OCEVENTS', '1.0', 'OCEVENTS', 2 * 1024 * 1024);
jQuery(document).ready(function($)
{
loadgamification();
//$('iframe header .header-container .header-nav-actions-container .header-actions-container .header-intranet-login').hide();
});
}
var localLink = '/';
var GHomepageLink = "\/gamification.html";
//document.write("<link href='https://oceventmanager.com/resources/gamification/css/appearance.css.php?eid=100041' rel='stylesheet' type='text/css'>");
</script>
<link rel="stylesheet" href="css/sitebuilder.css">
</head>
<body>
<!------------------------------------------------------------------ Image popup slider ------------------------------------------------------------------>
<div class="mfp-bg mfp-ready" style="display:none;"></div>
<div ata-role="page" id="pageone" class="mfp-wrap mfp-gallery mfp-close-btn-in mfp-auto-cursor mfp-ready" tabindex="-1" style="overflow-x: hidden; overflow-y: auto; display: none;" >
<div class="mfp-container mfp-s-ready mfp-image-holder">
<div class="mfp-content">
<div class="mfp-figure" id="showOriginalImage" >
<button class="mfp-close" type="button" title="Close (Esc)" onclick="closecommentimagespopupslider();">x</button>
<br />
<figure class="commentpopup_image">
<!--img class="mfp-img" alt="" src="img/loading.gif" style="max-height: 616px;"-->
<figcaption>
<div class="mfp-bottom-bar">
<div class="mfp-title"></div>
<div class="mfp-counter"></div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="mfp-preloader">Loading...</div>
<button class="mfp-arrow mfp-arrow-left mfp-prevent-close" type="button" title="Previous (Left arrow key)" id="previousCommentImage"></button>
<button class="mfp-arrow mfp-arrow-right mfp-prevent-close" type="button" title="Next (Right arrow key)" id="nextvCommentImage"></button>
</div>
<div class="swipe">
</div>
</div>
<!------------------------------------------------------------------ Image popup slider ------------------------------------------------------------------>
<div class="main-wrapper">
<div class="container login-page-container">
<div class="row">
<div class="col-xs-12">
<div class="container logo-wrapper"></div>
<span class="gamification text-center">Engagement</span>
<div align="center" class="loading_index_items" >
<br />
<img src="img/loading.gif" />
<br />
<p > loading app ...</p>
<br />
</div>
<div align="center" class="loading_autologin_items" style="display:none;">
<br />
<img src="img/loading.gif" />
<br />
<p style="color: #fff; letter-spacing: 5px; text-transform: lowercase;"> loading app ...</p>
<br />
</div>
<div id="select_url">
<form class="form-container" onsubmit="searchurl(); return false;">
<div class="login-wrapper">
<div class="form-group">
<div class="url-dialog-input">
<div class="search-wrapper urlSearch">
<p>
Find your provider
</p>
<!--i class="fa fa-search" id="fasearch" onclick="searchurl();"></i>
<i class="fa fa-times" id="fatimes" onclick="clearsearchurl();"></i-->
<i class="fafasearch" id="fasearch" onclick="searchurl();">a</i>
<i class="fafatimes" id="fatimes" onclick="clearsearchurl();">a</i>
<input type="text" placeholder="Company or event" class="searchUrl" value="" onkeyup="searchurl();" >
</div>
<ul class="urls-list" style="display:none;"> </ul>
</div>
</div>
</div>
</form>
</div>
<div id="autologinbox" style="display: none;">
<div id="urlselected">
<form class="form-container">
<div class="login-wrapper">
<div class="form-group">
<div class="url-selected-data">
<h1 id="selectedurlname">
</h1>
<!--i class="fa fa-cogs" id="fareset" onclick="resetUrl();"></i-->
<i class="fafacogs" id="fareset" onclick="resetUrl();">a</i>
<p class="byselected">By: One Communication</p>
</div>
</div>
</div>
</form>
</div>
<div id="loginFacebookBox" class="hideloginbox show-5">
<form class="form-container">
<div class="login-type">
<div class="form-group">
<a id="login_button" href="#" title="Login with credentials">
<i class="icon-edit"></i>
Login with credentials
</a>
</div>
<div class="form-group">
<a href="#" id="fblogin" class="fblogin" onclick="login();" title="Login via Facebook">
<i class="fa fa-facebook"></i>
Login via Facebook </a>
<img src="img/loading.gif" class="loading_fblogin">
</div>
</div>
</form>
</div>
</div>
<div id="loginBox" class="hide-element">
<form class="form-container" name="user_login" method="post" action="" id="user_login">
<div class="login-wrapper">
<div class="form-group">
<i class="icon-mail"></i> <!-- adrian@onecom.no adi.patrascu@gmail.com-->
<input class="form-control" type="text" name="email" id="fld_l_email" value="" placeholder="Email">
</div>
<div class="form-group">
<i class="icon-lock"></i>
<input class="form-control" type="password" name="password" value="" id="fld_l_password" placeholder="Password">
</div>
<div class="btn-wrapper login-page-button">
<button type="submit" id="login_submit" onclick="loginme();" class="btn">Login</button>
<img src="img/loading.gif" class="loading"> <br />
<div><a id="reset_button" href="#" title="Forgot password">Forgot password</a></div>
</div>
</div>
</form>
</div>
<div id="resetPasswordBox" class="hide-element">
<form class="form-container" name="reset_password" method="post" action="" id="reset_password">
<div class="recover-password-wrapper">
<p id="rpw_desc">Enter your e-mail and we will send you a new password to your registred mobile number</p>
<div class="form-group">
<i class="icon-mail"></i>
<input class="form-control" type="text" name="email_sms_reset" id="fld_rp_email" placeholder="Email">
</div>
<div class="btn-wrapper login-page-button">
<button id="resetpasswordbtn" type="button" onclick="resetpassword();" class="btn">Reset password</button>
<div><a id="back_button" class="button" href="#" title="Go back">Go back</a></div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!---------------------------------------------------------------------- Other Divs ---------------------------------------------------------------------->
<!---------------------------------------------------------------------- Header Starts ---------------------------------------------------------------------->
<header class="header" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-1 header-dropdown-menu-wrapper">
<a class="dropdown-btn" href="javascript:return false;" >
<div class="menu">
<i class="menu-icon">
<span></span>
<span></span>
<span></span>
</i>
</div>
</a>
</div>
<div class="col-xs-3 header-cup">
<a href="#" onclick="gotopoints(1);">
<i class="fa fa-trophy"> <span>#</span> 10</i>
</a>
</div>
<div class="col-xs-4 clearfix">
<div class="header-logo-container">
<a href="gamification.html" onclick="loadgamification(); return false;">
<img class="logo_inner" src="img/logo_inner.png">
</a>
</div>
</div>
<div class="col-xs-4 header-login-wrapper">
<a href="#" onclick="changetoprofile(); return false;">
<div class="log-info">
<p>
<!--br>
<strong>< Oslo, Norway > </strong><br-->
</p>
</div>
<div class="img-wrapper" id="profile_pic" style=""></div>
</a>
</div>
</div>
</div>
</header>
<!---------------------------------------------------------------------- Header Ends ---------------------------------------------------------------------->
<!---------------------------------------------------------------------- Loading Agenda Container Starts ---------------------------------------------------------->
<div align="center" class="container loading_agenda_items main-container" style="display: none;">
<br />
<img src="img/loading.gif" />
<br />
</div>
<!---------------------------------------------------------------------- Loading Agenda Container Ends ---------------------------------------------------------->
<!---------------------------------------------------------------------- Welcome Container Ends ---------------------------------------------------------->
<div class="container main-container welcome-container" style="display: none;">
<div class="row">
<div class="welcome-slider video">
<img class="main_banner_image" src="">
</div>
<div class="col-xs-12" style="background-color:#fff;">
<div class="welcome-title">
<h1></h1>
</div>
<p> </p>
<div class="welcome-content">
</div>
</div>
</div>
</div>
<!---------------------------------------------------------------------- Welcome Container Ends ---------------------------------------------------------->
<!--------------------------------------------------------------- Profile Container Start ---------------------------------------------------------------->
<div class="container main-container user-profile-container" style="display: none;">
<div class="header-title row" onclick="changetoprofile(); return false;">
<p>
</p>
</div>
<div class="user-profile-add-container ">
<div class="main-img-wrapper">
<div class="main-img" style="background-image: url('');"></div>
</div>
<div class="imageaddedremoved"></div>
<form enctype="multipart/form-data" method="post" action="">
<div class="selfie_button">
<div class="pic-upload selfie_capture">
<!--input class="addselfie" type="button" value="" onclick="showbuttons();"-->
<button class="addselfie" onclick="showbuttons();" type="button" name="addselfie" value="1">Add</button>
<!--span class="addselfietex" onclick="showbuttons();"></span-->
</div>
<div class="pic-upload hidden_button" style="display:none;">
<input type="button" value="Choose a Photo" onclick="getPhoto(pictureSource.PHOTOLIBRARY);">
Choose a Photo </div>
<div class="pic-upload hidden_button" style="display:none;">
<input type="button" value="Take a Photo" onclick="capturePhoto();">
Take a Photo </div>
</div>
</form>
<div id="plid">
<h5>Your player ID</h5>
<h2 class="player_code"></h2>
</div>
</div>
<div class="success_message">
<div class="isa_success">
<i class="fa fa-check"></i>
Profile Edited Successfully!
<input type="hidden" id="edited_success">
</div>
</div>
<div class="user-info row">
<div class="user-info-panel show_info_user">
<dl class="dl-horizontal">
<dt class="all_username">Username</dt>
<dd class="myname"></dd>
<dt class="all_email">Email</dt>
<dd class="myemail"></dd>
<dt class="all_mobile">Mobile</dt>
<dd class="mymobile"></dd>
<dt class="all_gender"></dt>
<dd class="mygender"></dd>
</dl>
<div class="btns-wrapper">
<a class="btn user-info-edit-btn" href="#"></a>
</div>
</div>
<div class="user-info-edit-form edit_info_user user-info-panel hidden">
<dl class="dl-horizontal clearfix">
<dt id="all_fname">
First Name </dt>
<dd>
<input class="form-control" id="fname_edit" type="text" name="data[fName]" value="">
</dd>
<dt id="all_lname">
Last Name </dt>
<dd>
<input class="form-control" id="lname_edit" type="text" name="data[lName]" value="">
</dd>
<dt id="all_email">
Email </dt>
<dd>
<input class="form-control" id="email_edit" type="text" name="data[eMail]" value="">
</dd>
<dt id="all_remail">
Repeat email </dt>
<dd>
<input class="form-control" id="emailrepeat_edit" type="text" name="data[email_repeat]" value="">
</dd>
<dt id="all_mobile">
Mobile </dt>
<dd>
<input class="form-control" id="mobile_edit" type="text" name="data[mobile]" value="">
</dd>
<dt id="all_pwd">
SetNewPassword </dt>
<dd>
<input class="form-control" id="pwd_edit" type="password" name="data[password]">
</dd>
<dt id="all_rpwd">
RepeatNewPassword </dt>
<dd>
<input class="form-control" id="pwdrepeat_edit" type="password" name="data[password_repeat]">
</dd>
</dl>
<div class="btns-wrapper">
<button class="btn user-info-save-btn" onclick="return saveprofile();" type="button" name="save_details" value="1">Save</button>
<a class="btn user-info-cancel-btn" href="#">Cancel</a>
</div>
</div>
</div>
<div class="user-facebook-link row facebook-link" style="display:none;">
<h4></h4>
<div class="facebook-description">
</div>
<div class="facebook-btn-wrapper">
<a href="#" onclick="linkwithfacebook();">
<i class="fa fa-facebook fbs"></i><span class="linkfb"></span> </a>
</div>
</div>
<div class="user-facebook-link row" id="unlinkfacebook" style="display:none;">
<div class="facebook-btn-wrapper">
<a href="#" onclick="unlinkwithfacebook();">
<i class="fa fa-facebook"></i> Unlink your account from Facebook </a>
</div>
</div>
<dl class="qa-list row">
</dl>
</div>
<!--------------------------------------------------------------- Profile Container Ends ----------------------------------------------------------------->
<!--------------------------------------------------------------- Agenda List Container Start ------------------------------------------------------------>
<div class="container main-container agenda-container list-agendalist-container agenda-menu-container" style="display: none;">
<div class="row">
<div class="agenda-header-wrapper">
<div class="calendar-icon-wrapper col-xs-4">
<i class="gicon-agenda"></i>
</div>
<div class="header-title col-xs-4" onclick="changetoagenda(); return false;">
<h1></h1>
</div>
<div class="see-all-wrapper col-xs-4">
<span>
<a style="color: #fff;text-decoration: none;" class="seealls" href="#" onclick="changetoallagenda(); return false;" data-type="all">
<span>All</span>
<i class="fa fa-clock-o"></i>
</a>
</span>
</div>
</div>
</div>
<div id="presentations-list">
<div class="row">
<div class="date-wrapper ">
<div class="date">
<p>Torsdag 26. Juni</p>
</div>
</div>
</div>
<div class="row">
<div class="agenda-content">
<div class="agenda-item col-xs-12">
<a href="http://beta.oceventmanager.com/View-presentation/-/100000/51">
<div class="agenda-info">
<div class="agenda-img" style="background-image: url(/resources/files/images/100176_6_a7068995c922ce0b0b839fcdf33d77de_medium.jpg);">
<svg class="agenda-item-progress" version="1.1" xmlns="http://www.w3.org/2000/svg" data-duration="" data-eta="">
<circle class="agenda-item-progress-bg" r="47.5" cx="50%" cy="50%" fill="transparent" stroke-dasharray="298.45130209103036" stroke-dashoffset="0"></circle>
<circle class="agenda-item-progress-eta" r="49.5" cx="50%" cy="50%" fill="transparent" stroke-dasharray="311.01767270538954" stroke-dashoffset="0"></circle>
</svg>
</div>
<div class="agenda-wrapper">
<span class="agenda-slogan">
1. Quiz test + rating </span>
<i class="fa fa-angle-right"></i>
<div class="agenda-person-info">
<span class="name">Quiz test subtitle</span>
</div>
</div>
</div>
</a>
<div class="agenda-footer">
<div class="meeting-location">
<i class="fa fa-map-marker"></i>
Barcelona </div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--------------------------------------------------------------- Agenda List Container Ends ------------------------------------------------------------>
<!--------------------------------------------------------------- Ticketing Container Start -------------------------------------------------------------->
<div class="container main-container ticketing-container" style="display:none;">
<div class="row">
<div class="col-xs-12">
<div class="ticketing-title-wrapper" onclick="changetoticketing(); return false;">
<h1></h1>
</div>
<div class="ticketing-content">
<h3></h3>
<div class="qr-code-wrapper">
<img class="qr_photo" src="">
</div>
<p class="ticket_code"></p>
</div>
</div>
</div>
</div>
<!--------------------------------------------------------------- Ticketing Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Leaderboard Container Start -------------------------------------------------------------->
<div class="container main-container leaderboards-container yourscores-leaderboards-container" style="display: none;">
<div class="header-title row">
<p>
<span class="breadcrumbs" onclick="changetopoints(); return false;"><span class="green-text">Points</span></span></p> </div>
<div class="subheader-grey row"></div>
<div class="user-points-table-container row">
<table class="user-points-table-title">
<tbody><tr>
<th class="col-xs-12">
<a href="#" onclick="changetopoints(); return false;" class="active yourscores">
</a>
</th>
<th class="col-xs-4 teampoints" style="display:none;">
<a href="#" onclick="changetoteampoints(); return false;" class="teamscores">
</a>
</th>
<th class="col-xs-4 yourteam" style="display:none;">
<a href="#" onclick="changetoyourpoints(); return false;" class="yourteam">
</a>
</th>
</tr>
</tbody></table> <div class="user-points-table">
<table class="table table-striped">
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!--------------------------------------------------------------- Leaderboard Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- teamscore Container Start -------------------------------------------------------------->
<div class="container main-container leaderboards-container teamscores-leaderboards-container" style="display: none;">
<div class="header-title row">
<p>
<span class="breadcrumbs"><span class="green-text">Points</span></span></p> </div>
<div class="subheader-grey row"></div>
<div class="user-points-table-container row">
<table class="user-points-table-title">
<tbody><tr>
<th class="col-xs-4">
<a href="#" onclick="changetopoints(); return false;" class="yourscores">
</a>
</th>
<th class="col-xs-4">
<a href="#" onclick="changetoteampoints(); return false;" class="active teamscores">
</a>
</th>
<th class="col-xs-4">
<a href="#" onclick="changetoyourpoints(); return false;" class="yourteam">
</a>
</th>
</tr>
</tbody></table> <div class="user-points-table">
<table class="table table-striped">
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!--------------------------------------------------------------- teamscore Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- yourteamscore Container Start -------------------------------------------------------------->
<div class="container main-container leaderboards-container yourteam-leaderboards-container" style="display: none;">
<div class="header-title row">
<p>
<span class="breadcrumbs"><span class="green-text">Points</span></span></p> </div>
<div class="subheader-grey row"></div>
<div class="user-points-table-container row">
<table class="user-points-table-title">
<tbody><tr>
<th class="col-xs-4" >
<a href="#" onclick="changetopoints(); return false;" class="yourscores">
</a>
</th>
<th class="col-xs-4" >
<a href="#" onclick="changetoteampoints(); return false;" class="teamscores">
</a>
</th>
<th class="col-xs-4">
<a href="#" onclick="changetoyourpoints(); return false;" class="active yourteam">
</a>
</th>
</tr>
</tbody></table> <div class="user-points-table">
<table class="table table-striped">
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!--------------------------------------------------------------- yourteamscore Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- add-friends Container Start -------------------------------------------------------------->
<div class="container main-container add-friends-container contacts-container" style="display: none;">
<div class="header-title row" onclick="changetocontacts(); return false;">
<p class="mycont">
</p>
</div>
<h2 class="container-title contacts_request">
<i class="gicon-friends"></i>
</h2>
<div class="friends-items-container friends-requests-container">
</div>
<input type="hidden" class="is_friend" value="" />
<div class="add-friend-form-container">
<form class="form-container" action="" method="post">
<div class="form-group">
<label for="users-filter" class="part_l"></label>
<input id="users-filter" class="form-control" type="text" placeholder="">
<span><i class="fa fa-search"></i></span>
<a class="show-friends-btn" href="#" onclick="changetoyourcontacts(); return false;">
</a>
</div>
</form>
</div>
<div id="friends-content-container">
<div class="friends-items-container all_conts">
</div>
</div>
</div>
<!--------------------------------------------------------------- add-friends Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Notes Container Start -------------------------------------------------------------->
<div class="container main-container questions-container agenda-container notes-agenda-container notes-container" style="display: none;">
<div class="row">
<div class="agenda-header-wrapper">
<div class="header-title col-xs-12" onclick="changetonotes(); return false;">
<h1></h1>
</div>
</div>
</div>
<div class="questions-heading-title row">
<div class="votes-count col-xs-12">
<i class="gicon-notes"></i>
<span class="green-text"></span>
</div>
</div>
<div id="allnotes">
<!--div style=background-image:url("http://oceventmanager.com/resources/files/videos/_1456477475_VID_20160226_170403_10.jpg") class="video-item"><div class="video-wrapper"><div class="video-container"><div class="future-video video" style="display:block;" onclick=playvideo("http://oceventmanager.com/resources/files/videos/_1456477475_VID_20160226_170403_10.m4v");><img src="img/bigplay.png" class="video_comment" /></div></div></div></div-->
</div>
<div id="show-form-container">
</div>
<div class="questions-filter-items main-questions-form-container has-file-upload" style="display:none;">
<div class="close-btn-wrapper">
<i class="fa fa-times close-btn"></i>
</div>
<div data-role="fieldcontain" class="form-group hidden frmfld_note_id">
<input id="frmfld_note_id" name="note_id" type="hidden" value="0"></div>
<div data-role="fieldcontain" class="form-group fileupload frmfld_files">
<i class="gicon-camera file-upload" onclick="shownotesbuttons();"></i>
</div>
<div data-role="fieldcontain" class="form-group textarea frmfld_note">
<textarea class="form-control" id="frmfld_note" name="note" maxlength="4096" placeholder="" style="height: 52px; overflow-y: hidden;"></textarea>
<span><i class="gicon-notes"></i></span>
</div>
<div class="success-status hide">
<div class="success-icon-wrapper">
<i class="icon-check"></i>
</div>
<p></p>
</div>
<div class="error-status hide">
<div class="error-icon-wrapper">
<i class="fa fa-ban"></i>
</div>
<p></p>
</div>
<div class="clearfix">
<div data-role="fieldcontain" class="frm_field submit">
<button type="button" name="submit" class="submit_com" onclick="addnote();"></button>
<img src="img/loading.gif" class="loading_send" style="display:none" />
</div>
</div>
<div class="swiper-container swiper-container-horizontal">
<div class="files swiper-wrapper">
<div class="template-upload swiper-slide fade in swiper-slide-active" style="width: 98.3333px; margin-right: 5px;">
<div class="name"></div>
<div class="preview"><canvas width="80" height="80"></canvas></div>
<i class="fa fa-times cancel" onclick="hidethumb();"></i>
</div></div>
</div>
</div>
<div class="ui-widget-overlay"></div>
<div id="footerSlideContainer"></div>
</div>
<!--------------------------------------------------------------- Notes Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Questions Container Start -------------------------------------------------------------->
<div class="container main-container questions-container add-comments-container" style="display: none;">
<div class="header-title row">
<p class="presentation-item-header">
<a class="nav-arrow prev" href="#" onclick="changetoagendaitem(); return false;" title="Back to presentation"><i class="fa fa-angle-left"></i></a>
<span class="breadcrumbs"><a href="#" onclick="changetoagendaitem(); return false;"></a> /
<span class="green-text" onclick="changetoaddcomments(); return false;"></span></span> </p>
</div>
<div class="questions-heading-title row">
<div class="votes-count col-xs-6" id="accvotescount">
<i class="fa fa-comment"></i>
<span class="green-text">0</span>
<span class="comment_counter"></span>
</div>
<div class="votes-sort col-xs-6">
<span>Sort by:</span>
<a class="active sortbytime" id="accsortbytime" href="#" onclick="sortcomments('timestamp','desc');">
<i class="fa fa-caret-up time_s"></i>
</a>
<a href="#" id="accsortbylikes"class="sortbylikes" onclick="sortcomments('likes','asc');">
<i class="fa fa-caret-up like_s"></i>
</a>
</div>
</div>
<div class="comment_loop">
<div class="inner_comment_loop"> </div>
<div id="show-form-container" onclick="commentpostbtn();" ondragstart="return false" onselectstart="return false">
<i class="fa fa-comment"></i>
<span class="commentpostplaceholder" ></span>
</div>
<div class="questions-filter-items main-questions-form-container" style="display:none;">
<div class="has-file-upload" id="createdform">
<div class="close-btn-wrapper">
<i class="fa fa-times close-btn"></i>
</div>
<div class="form-group fileupload frmfld_files" data-role="fieldcontain">
<i class="gicon-camera file-upload" onclick="showimagebuttons();">
</i></div>
<div class="form-group textarea frmfld_comment" data-role="fieldcontain">
<textarea placeholder="" maxlength="4096" name="comment" id="frmfld_comment" class="form-control">
</textarea>
<span><i class="fa fa-comment"></i></span></div>
<div class="form-group hidden frmfld_presentation_id" data-role="fieldcontain">
<input type="hidden" value="142" name="presentation_id" id="frmfld_presentation_id">
</div>
<div class="success-status hide">
<div class="success-icon-wrapper">
<i class="icon-check"></i>
</div>
<p></p>
</div>
<div class="error-status hide">
<div class="error-icon-wrapper">
<i class="fa fa-ban"></i>
</div>
<p></p>
</div>
<div class="clearfix">
<div class="frm_field submit" data-role="fieldcontain">
<button name="capture_image" style="display:none;" class="captureimage" onclick="captureImage();" type="button">Take a photo</button>
<button name="upload_image" style="display:none;" class="uploadimage" onclick="uploadImage(pictureSource.PHOTOLIBRARY);" type="button">Choose a Photo</button>
<button name="submit" onclick="submitcomment();" class="submit_com" type="submit"></button>
<img src="img/loading.gif" class="loading_send" style="display:none" />
</div>
</div>
<div class="swiper-container swiper-container-horizontal">
<div class="files swiper-wrapper">
<div class="template-upload swiper-slide fade in swiper-slide-active" style="width: 98.3333px; margin-right: 5px;">
<div class="name"></div>
<div class="preview"><canvas width="80" height="80"></canvas></div>
<i class="fa fa-times cancel" onclick="hidethumb();"></i>
</div></div>
</div>
<div class="swiper-container swiper-container-horizontal">
<div class="files swiper-wrapper">
</div>
</div>
</div>
</div>
</div>
<div class="ui-widget-overlay"></div>
<div id="footerSlideContainer"></div>
</div>
<!--------------------------------------------------------------- Questions Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Seeker Game Container Start -------------------------------------------------------------->
<div class="container main-container seeker-game-container single-seeker-container" style="display: none;">
<div class="header-title row">
<p class="presentation-item-header">
<a class="nav-arrow prev" href="#" onclick="changetoagendaitem(); return false;" title="Back to presentation"><i class="fa fa-angle-left"></i></a>
<span class="breadcrumbs"><a href="#" onclick="changetoagendaitem(); return false;"></a> / <span class="green-text" onclick="changetoseeker(); return false;"></span></span> </p>
</div>
<div class="seeker-game-top-container row">
<div class="seek-questions col-xs-4">
<i class="map-icon"></i>
<span class="green-text oneof"></span>
/ <span class="totalof"></span> </div>
<div class="seeker-game-question-level col-xs-8">
<ul class="bordered">
</ul>
</div>
</div>
<div class="seeker-container">
<div class="seeker-map-wrapper" align="center">
</div>
<div class="seeker-description">
<div class="seeker-hint"></div>
</div>
<div data-role="fieldcontain" class="form-group textfield seeker-answer-wrapper frmfld_code">
<input type="text" class="form-control" id="frmfld_code" name="code" maxlength="180" value="" placeholder="Answer">
</div>
<div class="success-status hide">
<div class="success-icon-wrapper">
<i class="icon-check"></i>
</div>
<p></p>
</div>
<div class="error-status hide">
<div class="error-icon-wrapper">
<i class="fa fa-ban"></i>
</div>
<p></p>
</div>
<div class="clearfix">
<div data-role="fieldcontain" class="frm_field submit btn-wrapper">
<button type="button" class="btn btn-default show-hint" name="show_hint">
SeekerShowHint
</button>
<button type="submit" onclick="submitseekeranswer();" class="btn btn-primary submit_com" name="submit">Submit</button>
<img class="loading_send" style="display:none" src="img/loading.gif">
</div>
</div>
</div>
</div>
<!--------------------------------------------------------------- Seeker Game Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Add Question Container Start -------------------------------------------------------------->
<div class="container main-container questions-container add-questions-container" style="display: none;">
<div class="header-title row">
<p class="presentation-item-header">
<a class="nav-arrow prev" href="#" title="Back to presentation"><i class="fa fa-angle-left"></i></a>
<span class="breadcrumbs"><a href="#" onclick="changetoagendaitem(); return false;"></a> /
<span class="green-text" onclick="changetoaddquestions(); return false;"></span></span> </p>
</div>
<div class="questions-heading-title row">
<div class="votes-count col-xs-6">
<i class="fa fa-question"></i>
<span class="green-text">3</span>
<span class="question_counter"></span>
<span class="small-text">2
</span>
</div>
<div class="votes-sort col-xs-6">
<span>Sort by:</span>
<a class="active sortbytime" href="#" onclick="sortquestions('timestamp','desc');">
<i class="fa fa-caret-up time_s"></i>
</a>
<a href="#" class="sortbylikes" onclick="sortquestions('likes','asc');">
<i class="fa fa-caret-up like_s"></i>
</a>
</div>
</div>
<div class="comment_loop">
<div class="inner_comment_loop"> </div>
<div id="show-form-container">
<i class="fa fa-comment"></i>
<span class="questionspostplaceholder"></span>
</div>
<div class="questions-filter-items main-questions-form-container" style="display: none;">
<div id="createdform">
<div class="close-btn-wrapper">
<i class="fa fa-times close-btn"></i>
</div>
<div data-role="fieldcontain" class="form-group textarea frmfld_question">
<textarea class="form-control add_question_textarea" id="frmfld_question" name="question" maxlength="4096" placeholder=""></textarea>
<span>
<i class="fa fa-question"></i>
</span></div>
<div class="form-group hidden frmfld_presentation_id" data-role="fieldcontain">
<input type="hidden" value="142" name="presentation_id" id="frmfld_presentation_id">
</div>
<div class="success-status hide">
<div class="success-icon-wrapper">
<i class="icon-check"></i>
</div>
<p></p>
</div>
<div class="error-status hide">
<div class="error-icon-wrapper">
<i class="fa fa-ban"></i>
</div>
<p></p>
</div>
<div class="clearfix">
<div class="frm_field submit" data-role="fieldcontain">
<button name="submit" onclick="submitquestion();" class="submit_com" type="submit"></button>
<button name="submits" class="loading_send" style="display:none" type="submit">Sending...</button>
</div>
</div>
<div class="swiper-container swiper-container-horizontal">
<div class="files swiper-wrapper">
<div class="template-upload swiper-slide fade in swiper-slide-active" style="width: 98.3333px; margin-right: 5px;">
<div class="name"></div>
<div class="preview"><canvas width="80" height="80"></canvas></div>
<i class="fa fa-times cancel" onclick="hidethumb();"></i>
</div></div>
</div>
<div class="swiper-container swiper-container-horizontal">
<div class="files swiper-wrapper">
</div>
</div>
</div>
</div>
</div>
</div>
<!--------------------------------------------------------------- Add Question Container Ends -------------------------------------------------------------->
<!--------------------------------------------------------------- Quiz Container Start -------------------------------------------------------------->
<div class="container main-container quiz-container" style="display: none;">
<div class="quiz-header-title row">
<p class="presentation-item-header">
<a class="nav-arrow prev" href="#" onclick="changetoagendaitem(); return false;" title="Back to presentation"><i class="fa fa-angle-left"></i></a>
<span class="breadcrumbs">
<a href="#" onclick="changetoagendaitem(); return false;"></a> /
<span class="green-text" onclick="changetoaddquiz(); return false;"></span></span> </p>
</div>
<div class="questionsdiv">
<div class="quiz-timer-container row">
<span class="quiz-icon-wrapper">