-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
92 lines (70 loc) · 2.27 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
<!doctype html>
<html>
<head>
<title>Super memo</title>
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes" />
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="root">
<div class="screen" id="list">
<ul class="lesson-list ui-elem"></ul>
</div>
<div id="lesson" class="screen">
<p id="question"></p>
<form id="f_answer">
<input id="answer" autocomplete="off">
<button class="dunno">Dunno</button>
<button class="check">Check</button>
</form>
<ul id="log_si"></ul>
<ul id="log_no"></ul>
</div>
<div id="edit" class="screen">
<form id="populate_lesson" class="input_pairs">
<input name="q" autocomplete="off"><input name="a" autocomplete="off"><br>
<input name="q" autocomplete="off"><input name="a" autocomplete="off"><br>
<input name="q" autocomplete="off"><input name="a" autocomplete="off"><br>
<input name="q" autocomplete="off"><input name="a" autocomplete="off"><br>
<input name="q" autocomplete="off"><input name="a" autocomplete="off"><br>
<button>Save</button>
</form>
</div>
<div id="dialog" class="screen">
</div>
<p class="status">
Memorised words:
<span id="known_words"></span>
</p>
<div id="app_menu">
<a href="#__list__">See all...</a>
<a href="#__new__">New set...</a>
<a href="#__edit__">Add question/answer...</a>
<a href="#__updateqa__">Update question/answer...</a>
<a href="#__deleteqa__">Delete question/answer...</a>
<a href="#__fileimport__">Import set...</a>
<a href="#__find__">Find word...</a>
<a href="#__showexcluced__">Show words I learnt...</a>
<a href="#__delete__">Delete set...</a>
<a href="#"></a>
</div>
<div class="ui-templates">
<form class="update_qa input_pairs">
<input name="q" autocomplete="off">
<input name="a" autocomplete="off">
<button>Save</button>
</form>
<ul>
<li class="lesson-launcher">
<a href="#" data-templ="name" data-attr="href" data-bind="lesson"></a>
<span class="memo-status">
<span class="status-unseen"></span>
<span class="status-need-revision"></span>
</span>
</li>
<ul>
</div>
<script src="zepto.min.js"></script>
<script src="bundle.min.js"></script>
</body>
</html>