add an image for folding instruction, fix some texts

This commit is contained in:
Michael Muré 2014-03-31 23:44:11 +02:00
parent e156cb62b7
commit 228a776d77
4 changed files with 10 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View file

@ -6120,7 +6120,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
<h3>Step 3. Fold the Paper Wallet</h3> <h3>Step 3. Fold the Paper Wallet</h3>
<p> <p>
Fold your new Paper wallet following the lines. Fold your new Paper wallet following the lines.
<img src="images/foldinginstructions.png"></img></br>
You can insert one side inside the other to lock the wallet.
</p> </p>
<h3>Step 4. Share your public key</h3> <h3>Step 4. Share your public key</h3>
<p> <p>
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want. 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' keyelement = 'btcencryptedkey'
var coinImgUrl = "logos/" + janin.selectedCurrency.name + ".png"; var coinImgUrl = "logos/" + janin.selectedCurrency.name + ".png";
var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name + ".png";
var walletHtml = var walletHtml =
"<div class='coinIcoin'> <img id='coinImg' src='" + coinImgUrl + "' alt='currency_logo' /></div><div class='artwallet' id='artwallet" + i + "'>" + "<div class='coinIcoin'> <img id='coinImg' src='" + coinImgUrl + "' alt='currency_logo' /></div><div class='artwallet' id='artwallet" + i + "'>" +
"<img id='papersvg" + i + "' class='papersvg' src='images/bitcoin_crypto_wallet.png' />" + "<img id='papersvg" + i + "' class='papersvg' src='" + walletBackgroundUrl + "' />" +
"<div id='qrcode_public" + i + "' class='qrcode_public'></div>" + "<div id='qrcode_public" + i + "' class='qrcode_public'></div>" +
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" + "<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
"<div class='btcaddress' id='btcaddress" + i + "'></div>" + "<div class='btcaddress' id='btcaddress" + i + "'></div>" +
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" + "<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
"<div class='paperWalletText'><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.</li><li>Verify your balance by searching for the public address using a service such as blockchain.info.</li><li>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.</li><li>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.</li></ul></div>" + "<div class='paperWalletText'><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li>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.</li></ul></div>" +
"</div>"; "</div>";
return walletHtml; return walletHtml;
}, },

View file

@ -203,7 +203,10 @@
<h3>Step 3. Fold the Paper Wallet</h3> <h3>Step 3. Fold the Paper Wallet</h3>
<p> <p>
Fold your new Paper wallet following the lines. Fold your new Paper wallet following the lines.
<img src="images/foldinginstructions.png"></img></br>
You can insert one side inside the other to lock the wallet.
</p> </p>
<h3>Step 4. Share your public key</h3> <h3>Step 4. Share your public key</h3>
<p> <p>
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want. Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want.

View file

@ -143,7 +143,7 @@ ninja.wallets.paperwallet = {
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" + "<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
"<div class='btcaddress' id='btcaddress" + i + "'></div>" + "<div class='btcaddress' id='btcaddress" + i + "'></div>" +
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" + "<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
"<div class='paperWalletText'><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.</li><li>Verify your balance by searching for the public address using a service such as blockchain.info.</li><li>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.</li><li>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.</li></ul></div>" + "<div class='paperWalletText'><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li>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.</li></ul></div>" +
"</div>"; "</div>";
return walletHtml; return walletHtml;
}, },