-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (94 loc) · 3.85 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
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="phonegap.js"></script>
<script src="GAPlugin.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<link rel="stylesheet" href="css/skyldleikur.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="js/skyldleikur.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<div data-role="page" id="s-login">
<div data-role="header">
<h1>Skyldleikur</h1>
</div><!-- /header -->
<div data-role="content">
<h2 style="margin-top:2.5em;">Hefjum skyldleik</h2>
<br><br>
<form action="/login" method="get" id="login">
<label for="name">Notandanafn*</label>
<input type="text" name="name" id="name" value="" />
<label for="password">Lykilorð*</label>
<input type="password" name="password" id="password" value="" autocomplete="off">
<input type="submit" value="Opna" data-theme="e">
</form>
<br class="clear">
<p>* sama notandanafn og lykilorð og á <a href="http://islendingabok.is" id="ib-external-link" target="_blank">Íslendingabók</a>.</p>
<br>
<div id="login-external-content" style="display:none;">
<a href="https://play.google.com/store/apps/details?id=net.nemur.skyldleikur"><img src="assets/graphics/Google_play.png" /></a>
<a href="http://www.facebook.com/skyldleikur"><img src="assets/graphics/facebook_green.png" /></a>
<a href="http://www.youtube.com/watch?v=YzjLcOmqLx8"><img src="assets/graphics/video.png" /></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="s-skyldleikur">
<div data-role="header">
<h1>Skyldleikur</h1>
</div><!-- /header -->
<div data-role="content">
<h2 style="text-align:center;">Velkomin(n) til Skyldleika!</h2>
<p id="sum-score" style="text-align:center;">Hvernig ertu í ættliðunum?</p>
<div id="levels-container"></div>
<br><br>
</div>
</div>
<div data-role="page" id="s-skyldleikur-spurn">
<div data-role="header">
<h1>Ættliður</h1>
</div>
<div data-role="content">
<div id="step-buttons"></div>
<h1 id="question" style="text-align:center;"></h1>
<div id="answer-buttons"></div>
<div data-role="popup" id="correctPopup" class="ui-content" data-theme="d" data-transition="pop" data-overlay-theme="a">
<p>Rétt!</p>
</div>
</div>
</div>
<div data-role="page" id="s-skyldleikur-stada">
<div data-role="header">
<h1>Úrslit</h1>
</div>
<div data-role="content">
<div style="text-align:center;">
<p>
<span id="results-count-correct" > </span> - <span id="results-mean-answer-time"> </span>
</p>
<h2 id="results-total-points"> </h2>
<p id="results-highscore"> </p>
</div>
<a href="" data-role="button" data-icon="refresh" data-theme="e" id="re-run-level">Aðra umferð</a>
<br>
<div id="results-container">
</div>
<a href="#s-skyldleikur" data-role="button" data-icon="bars" data-theme="b">Liðirnir</a>
</div>
</div>
<div data-role="page" id="s-skyldleikur-reset">
<div data-role="header">
<h1>Hreinsun</h1>
</div>
<div data-role="content">
<h2>Stig hreinsuð!</h2>
</div>
</div>
</body>
</html>