diff options
-rw-r--r-- | bip39-standalone.html | 8 | ||||
-rw-r--r-- | src/index.html | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html index fffa355..99fa529 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html | |||
@@ -52,15 +52,15 @@ | |||
52 | <hr> | 52 | <hr> |
53 | <div class="row"> | 53 | <div class="row"> |
54 | <div class="col-md-12"> | 54 | <div class="col-md-12"> |
55 | <h2>Phrase</h2> | 55 | <h2>Mnemonic</h2> |
56 | <form class="form-horizontal" role="form"> | 56 | <form class="form-horizontal" role="form"> |
57 | <div class="col-sm-2"></div> | 57 | <div class="col-sm-2"></div> |
58 | <div class="col-sm-10"> | 58 | <div class="col-sm-10"> |
59 | <p>You can enter an existing BIP39 phrase, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)</p> | 59 | <p>You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)</p> |
60 | <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a></p> | 60 | <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a></p> |
61 | </div> | 61 | </div> |
62 | <div class="form-group"> | 62 | <div class="form-group"> |
63 | <label for="phrase" class="col-sm-2 control-label">BIP39 Phrase</label> | 63 | <label for="phrase" class="col-sm-2 control-label">BIP39 Mnemonic</label> |
64 | <div class="col-sm-10"> | 64 | <div class="col-sm-10"> |
65 | <textarea id="phrase" class="phrase form-control"></textarea> | 65 | <textarea id="phrase" class="phrase form-control"></textarea> |
66 | </div> | 66 | </div> |
@@ -71,7 +71,7 @@ | |||
71 | <div class="input-group"> | 71 | <div class="input-group"> |
72 | <input type="number" class="strength form-control" id="strength" value="12"> | 72 | <input type="number" class="strength form-control" id="strength" value="12"> |
73 | <span class="input-group-btn"> | 73 | <span class="input-group-btn"> |
74 | <button class="btn generate">Generate Random Phrase</button> | 74 | <button class="btn generate">Generate Random Mnemonic</button> |
75 | </span> | 75 | </span> |
76 | </div> | 76 | </div> |
77 | </div> | 77 | </div> |
diff --git a/src/index.html b/src/index.html index 8368754..1a4164c 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -44,11 +44,11 @@ | |||
44 | <hr> | 44 | <hr> |
45 | <div class="row"> | 45 | <div class="row"> |
46 | <div class="col-md-12"> | 46 | <div class="col-md-12"> |
47 | <h2>Phrase</h2> | 47 | <h2>Mnemonic</h2> |
48 | <form class="form-horizontal" role="form"> | 48 | <form class="form-horizontal" role="form"> |
49 | <div class="col-sm-2"></div> | 49 | <div class="col-sm-2"></div> |
50 | <div class="col-sm-10"> | 50 | <div class="col-sm-10"> |
51 | <p>You can enter an existing BIP39 phrase, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)</p> | 51 | <p>You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)</p> |
52 | <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a></p> | 52 | <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a></p> |
53 | </div> | 53 | </div> |
54 | <div class="form-group"> | 54 | <div class="form-group"> |
@@ -63,7 +63,7 @@ | |||
63 | <div class="input-group"> | 63 | <div class="input-group"> |
64 | <input type="number" class="strength form-control" id="strength" value="12"> | 64 | <input type="number" class="strength form-control" id="strength" value="12"> |
65 | <span class="input-group-btn"> | 65 | <span class="input-group-btn"> |
66 | <button class="btn generate">Generate Random Phrase</button> | 66 | <button class="btn generate">Generate Random Mnemonic</button> |
67 | </span> | 67 | </span> |
68 | </div> | 68 | </div> |
69 | </div> | 69 | </div> |