-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
700 lines (527 loc) · 30 KB
/
index.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
<!DOCTYPE html>
<!-- Copyright 2012 United States Government, as represented by the Secretary of Defense, Under -->
<!-- Secretary of Defense (Personnel & Readiness). -->
<!-- -->
<!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file -->
<!-- except in compliance with the License. You may obtain a copy of the License at -->
<!-- -->
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- -->
<!-- Unless required by applicable law or agreed to in writing, software distributed under the -->
<!-- License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, -->
<!-- either express or implied. See the License for the specific language governing permissions -->
<!-- and limitations under the License. -->
<html>
<head>
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width; height=device-height; user-scalable=0; initial-scale=1; maximum-scale=1, minimum-scale=1;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery.fittext.js"></script>
<script>
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = 'none';
$.mobile.buttonMarkup.hoverDelay = 50;
$.mobile.defaultDialogTransition = 'none';
});
</script>
<script type="text/javascript" src="./js/jquery.mobile-1.1.0.js"></script>
<script type="text/javascript" src="./js/URI.min.js"></script>
<script type="text/javascript" src="./js/base64.js"></script>
<script type="text/javascript" src="./js/verbs.js"></script>
<script type="text/javascript" src="./js/config.js"></script>
<script type="text/javascript" src="./js/xapiwrapper.js"></script>
<script type="text/javascript" src="./js/SHA1.js"></script>
<script type="text/javascript" src='./js/Game.js' > </script>
<link rel="stylesheet" type="text/css"
href="./js/jquery.mobile.theme-1.1.0.css" />
<link rel="stylesheet" type="text/css"
href="./js/jquery.mobile.structure-1.1.0.css" />
<style type="text/css">
@keyframes fadeout2
{
0% {opacity:1;}
75% {opacity:1;}
100% {opacity:0;}
}
@-moz-keyframes fadeout2 /* Firefox */
{
0% {opacity:1;}
75% {opacity:1;}
100% {opacity:0;}
}
@-webkit-keyframes fadeout2 /* Safari and Chrome */
{
0% {opacity:1;}
75% {opacity:1;}
100% {opacity:0;}
}
@keyframes fadeout3
{
0% {opacity:1;}
100% {opacity:0;}
}
@-moz-keyframes fadeout3 /* Firefox */
{
0% {opacity:1;}
100% {opacity:0;}
}
@-webkit-keyframes fadeout3 /* Safari and Chrome */
{
0% {opacity:1;}
100% {opacity:0;}
}
@keyframes fadein3
{
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadein3 /* Firefox */
{
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadein3 /* Safari and Chrome */
{
0% {opacity:0;}
100% {opacity:1;}
}
</style>
</head>
<body>
<div style='min-height: 100%' data-role="page" id="one">
<div data-role="header" data-position="fixed">
<h1>ADL LRS Game</h1>
</div>
<div data-role="content">
<h1>Get started:</h1>
<p></p>
<div data-role="controlgroup">
<a id='togameboard' data-role="button">Show Game Board</a> <a
id='toLeaderBoard' href="#LeaderBoard" data-role="button">Show
Leaderboard</a> <a href="#ManualEntry" data-role="button">Enter
Code</a> <a href="#Help" data-role="button">About</a>
</div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div style='min-height: 100%' data-role="page" id="questionpage">
<div data-role="header" data-position="fixed">
<h1>Question</h1>
</div>
<div data-role="content">
<div id='questiontext'>This needs some more data</div>
<br />
<br />
<div data-role="controlgroup">
<a id='answer1' data-role="button"></a> <a id='answer2'
data-role="button"></a> <a id='answer3' data-role="button"></a> <a
id='answer4' data-role="button"></a>
</div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
data-id="foo1"></div>
</div>
<div data-role="page" id="VendorInfo">
<div data-role="header">
<h1>Vendor Info</h1>
</div>
<div data-role="content">
<div id='VendorName'></div>
<br /> <a href="#GameBoard" data-role="button">Close</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="UserScore">
<div data-role="header">
<h1>Scores</h1>
</div>
<div data-role="content">
<div id='scorename'></div>
<br />
<div id='scoreemail'></div>
<br />
<div id='scoreval'></div>
<br /> <a id='toLeaderBoard' href="#LeaderBoard" data-icon='back'
data-role="button">Back</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="LeaderBoard" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Leaderboard</h1>
</div>
<div data-role="content">
<div data-role="controlgroup">
<div>
<div id='lboard' data-role="collapsible-set" data-inset="true">
</div>
</div>
<a id='refresh' data-role="button" data-icon="refresh">Refresh</a>
</div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="Help" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Game Help</h1>
</div>
<div data-role="content">
<p>Objective: Find and scan QR codes to answer questions about Advanced Distributed Learning and the
Training and Learning Architecture (TLA) Experience API (Tin Can API).
Answer enough questions correctly to solve the puzzle for a chance to win prizes! Continue to scan codes and
answer questions to cement your legacy atop the Leaderboard.</p>
<p>How To Play: Scan any QR code to begin. For each QR code scanned, you will be presented with a multiple
choice question. Answer the question correctly to expose one or more tiles that are part(s) of the puzzle. Once you
are ready to solve the puzzle, hit the Solve button and put in your guess. Be careful as you only get 5 shots
at this!</p>
<p>Prizes and Eligibility: ADL will be giving several mystery prizes.
Please note that ADL employees are not eligible nor are government employees. All other players who solve the
puzzle correctly by the end of Wednesday, August 1st, 2012, are eligible. Winners will be selected randomly.</p>
<p>Use the Reset Button Below to reset your progress and forget
your Actor Name. You'll have to choose a different name next time
you want to play, because the data will already be stored and
finalized.</p>
<a href="#UserInfo" data-role="button" data-rel='dialog' data-icon='search' >User Info</a>
<a href="#resetpage" data-role="button" data-rel='dialog' data-icon='delete'>Reset</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="UserInfo" data-theme="c">
<div data-role="header">
<h1>User Info</h1>
</div>
<div data-role="content">
<p>You are logged in as:</p>
<p></p>
<div id='currentusername'></div>
<p></p>
<p></p>
<div id='currentuseremail'></div>
<p></p>
<div data-role="controlgroup">
<a href="#Help" data-role="button" data-icon='back'>Ok</a>
</div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="resetpage" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Game Reset</h1>
</div>
<div data-role="content">
<p>Are you sure you want to reset? You will loose all game
progress, and have to create a new name to play again.</p>
<div data-role="controlgroup">
<a id='reset' data-role="button" data-icon='delete'>Confirm Reset</a> <a href="#Help"
data-role="button" data-icon='back'>Cancel</a>
</div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="SignIn" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Sign Up</h1>
</div>
<div data-role="content">
<p>Please enter an email address below.<br/>
<input type='email' placeholder="name@example.com" id='email2' />
</p>
<p>Please enter a password below.<br/>
<input type='password' id='password2' placeholder='password' />
</p>
<a id='signinok' data-role="button" data-icon='check'>Ok</a> <a href="#login"
data-role="button" data-icon='back'>Cancel</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="SignUp" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Sign Up</h1>
</div>
<div data-role="content">
<p>The LRS requires an 'Actor name' for you. This data will be
used to associate an event in the LRS with you.</p>
<p>You'll have to choose a unique name so that your data is not
confused with any one else's</p>
<p>Please enter a username below.<br/>
<input type='text' placeholder='name' id='username' />
</p>
<p>Please enter an email address below.<br/>
<input type='email' placeholder="name@example.com" id='email' />
</p>
<p>Please enter a password below.<br/>
<input type='password' placeholder='password' id='password' />
</p>
<p>Please confirm the password.<br/>
<input type='password' placeholder='password' id='password1' />
</p>
<a id='usernameok' data-role="button" data-icon='check'>Ok</a> <a href="#login"
data-role="button" data-icon='back'>Cancel</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="login" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Actor Name</h1>
</div>
<div data-role="content">
<p>The LRS requires an 'Actor name' for you. This data will be
used to associate an event in the LRS with you.</p>
<p>You'll have to choose a unique name so that your data is not
confused with any one else's</p>
<a href='#SignUp' data-role="button" data-icon='star'>Create Account</a> <a
href='#SignIn' data-role="button" data-icon='home'>Sign In</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed">
<h4>ADL LRS Game Demo</h4>
</div>
</div>
<div data-role="page" id="ManualEntryCode" data-theme="c" >
<div data-role="header" data-position="fixed">
<h1>Manual Entry</h1>
</div>
<div data-role="content" >
<p>If you cannot scan a QR code, you may manually enter it's
code. This code is printed near the bottom of the QR code plackard.</p>
<p>The code is a short word and is not case sensitive.</p>
<p>Enter the code below.</p>
<p>
<input type='text' placeholder='code' id='manualcode' />
</p>
<a id='ManualEntryOk' data-role="button" data-icon="check">Ok</a>
<a href='#ManualEntry' data-role="button" data-icon="back">Back</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="ManualEntryAnswer" data-theme="c">
<div data-role="header" data-position="fixed">
<h1>Submit Answer</h1>
</div>
<div data-role="content" >
<p id='AnswerScreenText'>Guess the answer to the puzzle. Careful, you only get 5 guesses.</p>
<p>
<textarea rows='3' placeholder='Type the phrase here' type='text' id='SolvedPuzzleGuess' ></textarea>
</p>
<a id='SubmitAnswerOk' data-role="button" data-icon="check">Ok</a>
<a href='#ManualEntry' data-role="button" data-icon="back">Back</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="ManualEntry" data-theme="c" >
<div data-role="header" data-position="fixed">
<h1>Manual Entry</h1>
</div>
<div data-role="content" >
<p>If you don't have access to a camera, but wish to enter the
QR code manually, choose "Enter A Code".</p>
<p>If you would like to submit an answer to the puzzle, use
"Solve The Puzzle". Remember, you only get 3 guesses!</p>
<a href="#ManualEntryCode" data-role="button" data-icon="check">Enter A Code</a> <a
href="#ManualEntryAnswer" data-role="button" data-icon="check">Solve The Puzzle</a>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="GameBoard" data-url="#GameBoard" style='overflow:hidden'>
<a data-role='button' data-theme='b'
href='#ManualEntryAnswer' style='left:5%;width:90%;top:1%;height:8%;margin:0;min-height:2em;margin:.4em'>Solve the Puzzle</a>
<div style='overflow:hidden;height:100%;width:100%;position:absolute;overflow:hidden'>
<div id='gamebase' style='overflow:hidden'></div>
</div>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="puzzleSolved" data-url="puzzleSolved">
<div data-role="header" data-position="fixed">
<h1>Congratulations!</h1>
</div>
<img src='fireworksanimation-13.gif' style='width:100%' />
<h3>Congratulations. You've successfully solved the puzzle. Your name will be entered to win one of the prizes at the end of the conference!</h3>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="LiveStream" data-url="LiveStream">
<div data-role="header" data-position="fixed">
<h1>Manual Entry</h1>
</div>
<ul id='EventList' data-role="listview" data-inset="true">
<li>ListTest</li>
</ul>
<div data-role="footer" data-theme="d" data-position="fixed"
class="ui-bar ui-footer" style="padding:0px 0px 0px 0px" data-id="foo1">
<div style="padding:0px 0px 0px 0px" data-role='navbar'>
<ul>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonGB'><img src='40-dialpad.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Gameboard</p></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonME'><img src='187-pencil.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Manual Entry</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonLB'><img src='85-trophy.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>Leaderboard</p></a></a>
</li>
<li><a style='text-align:center;padding:0px 0px 0px 0px;margin:-5px 0px -5px 0px;border:1px solid darkgrey'
class='footerbuttonA'><img src='20-gear-2.png'/><p style='margin:0px 0px -5px 0px;font-size:.8em'>About</p></a>
</li>
</ul>
</div>
</div>
</div>
<div id='newpiece'></div>
</body>
</html>