-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
68 lines (65 loc) · 3.35 KB
/
Copy pathstart.html
File metadata and controls
68 lines (65 loc) · 3.35 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
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
<!DOCTYPE html>
<html>
<head>
<title id="page-title">Flashcards - Studying</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1 class="" id="page-header">Flashcards</h1>
<!-- Set section -->
<div id="set-section">
<label class="study-button" id="set-label" for="set-select">Upload set:</label>
<input class="" type="file" id="set-select" accept="text/json"/>
<t id="set-name-display">None</t>
<button class="study-button" id="set-edit" onclick="openEditSet()" hidden>Edit</button>
<button class="study-button" id="set-save" onclick="saveAndWriteSet()">Save</button>
<button class="study-button" id="set-save-new" onclick="saveNewSet()">Save as new</button>
</div>
<br>
<div id="edit-section" hidden>
<button class="study-button" id="edit-restore" onclick="restoreEditSet()">Restore</button>
<button class="study-button" id="edit-close" onclick="closeEditSet()">Close</button>
<input type="text" id="edit-name" class="edit-pair-input"></input>
<div id="edit-pairs"></div>
<div id="edit-add">
<button class="study-button" id="edit-add-button" onclick="addPair()">+</button>
</div>
</div>
<br>
<div id="set-preview-section">
<t class="" id="set-preview-text">preview</t>
</div>
<!-- Study section -->
<div id="study-flashcard-viewport" >
<t id="study-flashcard-counter"></t>
<t id="study-index-display"></t>
<t id="study-term-display"></t>
<div id="study-flashcard">
<div>
<t id="study-flashcard-display"></t>
</div>
</div>
<div id="study-flashcard-buttons">
<button class="study-button inactive-button" id="study-button-left" onclick="switchFlashcardLeft()">←</button>
<button class="study-button inactive-button" id="study-button-right" onclick="switchFlashcardRight()">→</button>
<button class="study-button inactive-button" id="study-button-shuffle" onclick="shuffleCards()">Shuffle</button>
<button class="study-button inactive-button" id="study-button-flip" onclick="flipCard()">Flip</button>
</div>
</div>
<br>
<br>
<br>
<br>
<!-- About section -->
<div id="about-section" >
<h3 class="" id="created-by-lrae1207">Created by Lrae1207</h3>
<h3 class="" id="contact-https-github-com-lrae1207-or-lraeprogramming-gmail-com-">Contact @ <a href="https://github.com/Lrae1207">https://github.com/Lrae1207</a> or <a href="mailto:lraeprogramming@gmail.com">lraeprogramming@gmail.com</a></h3>
<p class="">A python eel app I designed because I'm not buying quizlet premium. This is mostly meant for me to study without having to watch ads on quizlet.</p>
</div>
<div id="error-section" >
<t id="error-text"></t>
</div>
<script type="text/javascript" src="eel.js"></script>
<script type="text/javascript" src="function.js"></script>
</body>
</html>