-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
41 lines (37 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Blockfolio Extension Options</title>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css"/>
</head>
<body style="background-color: #F5F5F5;">
<div class="container well" style="margin-top: 25px; background-color: #FFF;">
<form class="form-horizontal">
<fieldset>
<legend>Blockfolio Extension Options</legend>
<div class="control-group">
<label class="control-label">Blockfolio Token</label>
<div class="controls">
<textarea id="api-key" style="width:370px; height:100px; resize: none;"></textarea>
<p class="help-block" style="font-size: 12px; width: 500px;">Blockfolio app - Settings - Token</p>
</div>
</div>
<div class="control-group">
<label class="control-label">Refresh interval (seconds)</label>
<div class="controls">
<input id="refresh-interval" name="textinput" type="text" class="input-medium" style="height: 30px">
</div>
</div>
<div class="control-group">
<div class="controls">
<div id="status"></div>
<button id="save" class="btn btn-primary">Save changes</button>
<script src="js/options.js"></script>
</div>
</div>
</fieldset>
</form>
</div>
</body>
</html>