-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
36 lines (34 loc) · 986 Bytes
/
options.html
File metadata and controls
36 lines (34 loc) · 986 Bytes
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
<!DOCTYPE html>
<html>
<head><title>SciRate Assistant Options</title></head>
<body>
<label>
<h3>Font preference</h3>
<input type="checkbox" id="isLoveSen">
I prefer Sen.
</label>
<div id="status"></div>
<button id="save">Save</button>
<br><br>
<label>
<h3>Export the reading list</h3>
<button id="exportReadList">Export</button>
</label>
<br>
<label>
<h3>Load the reading list</h3>
<input type="file" id="loadFile">
<button id="confirmLoad">Load</button>
<div>Note that when one paper is marked as 'reading' in one list and 'read' in the other, it will be marked as 'read'.</div>
<div id="loadStatus"></div>
</label>
<br>
<label>
<h3 color="red">Delete the reading list</h3>
<input type="text" id="deleteText" style="background:aliceblue; color:red;" placeholder="type 'DELETE' to confirm">
<button id="deleteReadList" style="background:red; color:aliceblue;">Submit</button>
<div id="hint"></div>
</label>
<script src="options.js"></script>
</body>
</html>