-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
39 lines (30 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>SaviorTime Options</title>
<style>
* {
font-size: 14pt;
}
div {
margin: 10px;
}
input {
height: 20px;
padding: 3px;
}
button {
padding: 8px 16px;
}
</style>
</head>
<body>
<div>SaviorTime uses the RescueTime API to show you the most up to date information.</div>
<div>Generate a RescueTime API key for your account here:</div>
<div><a href="https://www.rescuetime.com/anapi/manage" target=_blank>https://www.rescuetime.com/anapi/manage</a></div>
<div><label>Your API Key:</label> <input type="text" id="apikey" size="50"></div>
<div><button id="save">Save</button></div>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>