diff --git a/images/foldinginstructions.png b/images/foldinginstructions.png
new file mode 100644
index 0000000..95f92e8
Binary files /dev/null and b/images/foldinginstructions.png differ
diff --git a/index.html b/index.html
index 80b588f..a42a51e 100644
--- a/index.html
+++ b/index.html
@@ -6120,7 +6120,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
Step 3. Fold the Paper Wallet
Fold your new Paper wallet following the lines.
+
+ You can insert one side inside the other to lock the wallet.
+
Step 4. Share your public key
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want.
@@ -8258,15 +8261,16 @@ ninja.wallets.paperwallet = {
keyelement = 'btcencryptedkey'
var coinImgUrl = "logos/" + janin.selectedCurrency.name + ".png";
+ var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name + ".png";
var walletHtml =
"

" +
- "

" +
+ "

" +
"
" +
"
" +
"
" +
"
" +
- "
- To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.
- Verify your balance by searching for the public address using a service such as blockchain.info.
- DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.
- When withdrawing funds from this wallet you should remove the ENTIRE BALANCE. If you attempt to spend only some of the funds you will likely lose the remaining cryptocurrency forever.
" +
+ "
- To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.
- Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.
- DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.
" +
"
";
return walletHtml;
},
diff --git a/src/index.html b/src/index.html
index f807ac3..97a36e9 100644
--- a/src/index.html
+++ b/src/index.html
@@ -203,7 +203,10 @@
Step 3. Fold the Paper Wallet
Fold your new Paper wallet following the lines.
+
+ You can insert one side inside the other to lock the wallet.
+
Step 4. Share your public key
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want.
diff --git a/src/ninja.paperwallet.js b/src/ninja.paperwallet.js
index cb910f3..6889995 100644
--- a/src/ninja.paperwallet.js
+++ b/src/ninja.paperwallet.js
@@ -143,7 +143,7 @@ ninja.wallets.paperwallet = {
"
" +
"" +
"" +
- "- To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.
- Verify your balance by searching for the public address using a service such as blockchain.info.
- DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.
- When withdrawing funds from this wallet you should remove the ENTIRE BALANCE. If you attempt to spend only some of the funds you will likely lose the remaining cryptocurrency forever.
" +
+ "- To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.
- Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.
- DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.
" +
"";
return walletHtml;
},