forked from Root-1/flashcards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.15 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.15 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
<html>
<head>
<title>OpenMinds Flashcards Demo</title>
<link rel="stylesheet" href="main.css" type="text/css" />
</head>
<body>
<a id="login" href="#" onclick="login()">Log In to OpenMinds</a>
<a id="logout" href="#" onclick="logout()">Log Out of OpenMinds</a>
<div id="main">
<div id="app">
<h2 id="title"></h2>
<h5 id="description"></h5>
<div id="flashcards">
<a id="prev" href="#">«</a>
<a id="next" href="#">»</a>
<div id="flashcard">
<div id="index"></div>
<div id="word"></div>
<div id="defn"></div>
</div>
</div>
</div>
<div id="logged-out">
<h1>OpenMinds Flashcard Demo App</h1>
<a href="#" onclick="login()">Log In To OpenMinds</a> to start the app.
</div>
</div>
<script src="jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="openminds_connect.js" type="text/javascript" charset="utf-8"></script>
<script src="flashcards.js" type="text/javascript" charset="utf-8"></script>
<script>
init();
</script>
</body>
</html>