diff options
author | Steven Hatzakis <hatgit@users.noreply.github.com> | 2018-08-28 23:04:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-28 23:04:30 +0300 |
commit | 7d6078040d279d24789fed5066a8d5f39268ebeb (patch) | |
tree | 57caef682dce2275db909f0b27684a5730c61cc4 /src | |
parent | e76cd8fbf32e3b76158dc59ca6d018591a6032eb (diff) | |
download | BIP39-7d6078040d279d24789fed5066a8d5f39268ebeb.tar.gz BIP39-7d6078040d279d24789fed5066a8d5f39268ebeb.tar.zst BIP39-7d6078040d279d24789fed5066a8d5f39268ebeb.zip |
Update index.html
I think changing slightly the position of the generate button and re-wording the sentence as proposed will enhance the UX a little bit, I've also proposed to change the default selected word count to 12 from 15 (as 12 are more widely used).
Diffstat (limited to 'src')
-rw-r--r-- | src/index.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/index.html b/src/index.html index 203e6e2..7a3e894 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -36,23 +36,22 @@ | |||
36 | <div class="col-sm-10"> | 36 | <div class="col-sm-10"> |
37 | <div class="form-inline"> | 37 | <div class="form-inline"> |
38 | <div class="input-group-inline"> | 38 | <div class="input-group-inline"> |
39 | <span>Generate a random mnemonic, or enter your own below</span>: | 39 | <span>Generate a random mnemonic </span>: |
40 | <button class="btn generate">Generate</button> | 40 | <button class="btn generate" ><b>GENERATE</b></button> |
41 | <select id="strength" class="strength form-control"> | 41 | <select id="strength" class="strength form-control"> |
42 | <option value="3">3</option> | 42 | <option value="3">3</option> |
43 | <option value="6">6</option> | 43 | <option value="6">6</option> |
44 | <option value="9">9</option> | 44 | <option value="9">9</option> |
45 | <option value="12">12</option> | 45 | <option value="12" selected="">12</option> |
46 | <option value="15" selected>15</option> | 46 | <option value="15">15</option> |
47 | <option value="18">18</option> | 47 | <option value="18">18</option> |
48 | <option value="21">21</option> | 48 | <option value="21">21</option> |
49 | <option value="24">24</option> | 49 | <option value="24">24</option> |
50 | </select> | 50 | </select> |
51 | <span>words</span>. | 51 | <span>words, or enter your own below</span>. |
52 | <p class="warning help-block hidden"> | 52 | <p class="warning help-block hidden"> |
53 | <span class="text-danger"> | 53 | <span class="text-danger"> |
54 | Mnemonics with less than 12 words have low entropy and may be guessed by an attacker. | 54 | Mnemonics with less than 12 words have low entropy and may be guessed by an attacker.</span> |
55 | </span> | ||
56 | </p> | 55 | </p> |
57 | </div> | 56 | </div> |
58 | </div> | 57 | </div> |