-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
54 lines (43 loc) · 2.2 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
54
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="sha256.min.js"></script>
<script src="nacl.min.js"></script>
<script src="nyzoString.js"></script>
<script src="util.js"></script>
<script src="extensionUtil.js"></script>
<script src="options.js"></script>
</head>
<body>
<h1>
Nyzo extension options
</h1>
<div class="container">
<label class="label" for="privateKey">Nyzo string private key</label>
<input autocomplete="off" id="privateKey" class="input" spellcheck="false">
<label class="label" for="baseTip">base tip amount, in Nyzos</label>
<input autocomplete="off" id="baseTip" class="input" spellcheck="false">
<div class="attached-notice">
The dialog displays options for 1x, 2x, and 5x the base tip amount. So, with a base tip amount of ∩0.1,
the dialog provides options of ∩0.1, ∩0.2, and ∩0.5.<br><br>
The tip amount must be at least ∩0.000002 and no more than ∩10.000000.
</div>
<label class="label" for="maximumMicropayAmount">maximum Micropay amount, in Nyzos</label>
<input autocomplete="off" id="maximumMicropayAmount" class="input" spellcheck="false">
<div class="attached-notice" style="margin-bottom: 2rem;">
The maximum Micropay amount must be at least ∩0.000002 and no more than ∩50.000000.
</div>
<label class="label" for="maximumAutomaticAmount">maximum automatic amount, in Nyzos</label>
<input autocomplete="off" id="maximumAutomaticAmount" class="input" spellcheck="false">
<div class="attached-notice">
The maximum automatic amount must be at least ∩0.000001 and no more than ∩1.000000.
</div>
<label class="label" for="maximumAutomaticAuthorization">maximum automatic authorization, in Nyzos</label>
<input autocomplete="off" id="maximumAutomaticAuthorization" class="input" spellcheck="false">
<div class="attached-notice">
The maximum automatic authorization must be at least ∩0.000010 and no more than ∩100.000000.
</div>
</div>
</body>
</html>