forked from Josephine-Chen/FocusPro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
45 lines (44 loc) · 1.43 KB
/
options.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
<html>
<head><title>Time Tracker Preferences</title></head>
<script src="jquery-3.1.1.min.js"></script>
<script src="config.js"></script>
<script src="sites.js"></script>
<script src="options.js"></script>
<body>
<b>Auth0 ID</b>:
<input type="text" id="auth0_id"></input>
<button id="add_auth0_id">Store ID</button>
<br />
<b> Current Blacklist </b>: <br />
<b> Blackout</b>: <br />
<div id="blackout_display" ></div>
<b> Block After Exceeding </b>:
<div id="block_display">
</div>
<b> Warn After Exceeding </b>: <br />
<div id="warn_display" ></div>
<button id="update_blacklist">Update blacklist</button>
<br />
<!-- <b>Time Display</b>:
<select id="time_display">
<option value="0">Pretty</option>
<option value="1">Minutes</option>
</select>
<br/> -->
<b>Manage Ignored Sites</b>: <br/>
<input type="text" id="new_ignored_site"></input>
<button id="add_ignored">Add</button><br/>
<select id="ignored_sites" MULTIPLE size="10">
</select><br/>
<button id="remove_ignored">Remove Selected</button>
<br/>
<!-- <b>Clear Statistics Every</b>:
<select id="clear_stats_interval">
<option value="0">never</option>
<option value="3600">Hour</option>
<option value="86400">Day</option>
<option value="604800">Week</option>
</select><br/> -->
<button id="download">Download CSV</button><br/>
</body>
</html>