-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
69 lines (61 loc) · 1.5 KB
/
options.html
File metadata and controls
69 lines (61 loc) · 1.5 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
69
<!DOCTYPE html>
<html>
<head><title>Options | Envato Comments Notifications</title></head>
<style>
fieldset {
width: 100%;
}
fieldset > * {
width: 45%;
display: inline-block;
vertical-align: top;
}
fieldset label {
vertical-align: middle;
font-size: 16px;
font-weight: bold;
}
fieldset .description {
/*width: 50%;*/
}
</style>
<body>
<div id="wrapper">
<h2>Envato Comments Notifications Extension Settings</h2>
<fieldset>
<label for="envato_token">
Envato Token:
</label>
<input type="text" id="envato_token">
<div class="description">
<p>The Envato Token is required since the extension needs to authanticate into the Envato API and get data for you</p>
<p>You can get a token from <a href="https://build.envato.com/create-token/">here</a> (you will have to create an account) </p>
</div>
</fieldset>
<fieldset>
<label for="items_ids">
Items ids:
</label>
<textarea id="items_ids" cols="45" rows="5"></textarea>
<div class="description">
<p>Add items ids separated by comma</p>
</div>
</fieldset>
<fieldset>
<label for="recheck_time">
Check time in seconds:
</label>
<input type="text" id="recheck_time" placeholder="900">
<div class="description">
<p>This is the time interval when the extension should check again for new comments.</p>
<p>The default is 900(15 minutes)</p>
</div>
</fieldset>
<fieldset>
<div id="status"></div>
<button id="save">Save</button>
</fieldset>
</div>
<script src="options.js"></script>
</body>
</html>