-
Notifications
You must be signed in to change notification settings - Fork 12
/
options.html
53 lines (51 loc) · 2.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
46
47
48
49
50
51
52
53
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title id="options_title" class="lang">Bitcoin Mining Monitor options</title>
<link rel="stylesheet" type="text/css" href="css/options.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<div id="wrap">
<div id="main">
<h1>Bitcoin Mining Monitor</h1>
<form action="">
<fieldset>
<legend>tokens</legend>
<div id="tokens"></div>
<span id="tokens_auto_description" class="lang"></span>
<a id="tokens_auto" class="lang button">auto tokens</a>
</fieldset>
<br/>
<fieldset>
<legend>popup</legend>
<!-- <input type="checkbox" name="summary" id="summary"/>
<label for="summary" id="summary_label" class="lang">Summary</label>-->
<input type="checkbox" name="convert" id="convert"/>
<label for="convert" id="convert_label" class="lang">convert</label>
</fieldset>
<br/>
<fieldset>
<legend>badge</legend>
<label><input type="radio" name="badge" value="hashrate" />Hashrate</label>
<label><input type="radio" name="badge" value="workers_formatted" />Workers</label>
<label><input type="radio" name="badge" value="confirmed_reward" />Reward</label>
</fieldset>
<div id="buttons">
<!-- <div id="restore_defaults" class="lang">Restore defaults</div>-->
<input type="submit" value="" id="save" class="lang button" />
<div style="clear:both"></div>
</div>
</form>
</div>
<div id="push"></div>
</div>
<div id="footer">
<div id="inFooter">
<a href="http://www.101studio.pl" id="logo">101studio</a>
</div>
</div>
</body>
</html>