Supported currency in the front page, list dynamically generated
This commit is contained in:
parent
b31a16f1bc
commit
dca440a20f
3 changed files with 30 additions and 22 deletions
24
index.html
24
index.html
|
@ -6131,6 +6131,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
|
@ -6228,16 +6232,6 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
<div class="secondHalfSingleSafety">
|
||||
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Auroracoin, Bitcoin, Blackcoin, BBQcoin, Catcoin, Dogecoin, Feathercoin, Litecoin, Marscoin, NameCoin, Peercoin, Primecoin, Reddcoin, Topcoin, Vertcoin.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="securityChecklist">
|
||||
<b>Security Checklist :</b>
|
||||
|
||||
|
@ -9487,6 +9481,16 @@ for(i = 0; i < janin.currencies.length; i++) {
|
|||
options += ">"+janin.currencies[i].name+"</option>";
|
||||
}
|
||||
select.innerHTML = options;
|
||||
// populate supported currency list
|
||||
var supportedcurrencies = document.getElementById("supportedcurrencies");
|
||||
var currencieslist = "";
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if(janin.currencies[i].donate == null)
|
||||
continue;
|
||||
currencieslist += "<a href='?currency="+janin.currencies[i].name;
|
||||
currencieslist += "'>"+janin.currencies[i].name+"</a> ";
|
||||
}
|
||||
supportedcurrencies.innerHTML = currencieslist;
|
||||
// populate donate list
|
||||
document.getElementById("donateqrcode").style.display = "none";
|
||||
var donatelist = document.getElementById("donatelist");
|
||||
|
|
|
@ -174,6 +174,10 @@
|
|||
|
||||
<div class="firstHalfSingleSafety">
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
<div id="supportedcurrencies"></div>
|
||||
</div>
|
||||
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||
<p>
|
||||
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||
|
@ -271,16 +275,6 @@
|
|||
<div class="secondHalfSingleSafety">
|
||||
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
|
||||
|
||||
<div class="supportedCurrenciesChecklist">
|
||||
<b>Supported currencies :</b>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Auroracoin, Bitcoin, Blackcoin, BBQcoin, Catcoin, Dogecoin, Feathercoin, Litecoin, Marscoin, NameCoin, Peercoin, Primecoin, Reddcoin, Topcoin, Vertcoin.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="securityChecklist">
|
||||
<b>Security Checklist :</b>
|
||||
|
||||
|
|
|
@ -32,6 +32,16 @@ for(i = 0; i < janin.currencies.length; i++) {
|
|||
options += ">"+janin.currencies[i].name+"</option>";
|
||||
}
|
||||
select.innerHTML = options;
|
||||
// populate supported currency list
|
||||
var supportedcurrencies = document.getElementById("supportedcurrencies");
|
||||
var currencieslist = "";
|
||||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if(janin.currencies[i].donate == null)
|
||||
continue;
|
||||
currencieslist += "<a href='?currency="+janin.currencies[i].name;
|
||||
currencieslist += "'>"+janin.currencies[i].name+"</a> ";
|
||||
}
|
||||
supportedcurrencies.innerHTML = currencieslist;
|
||||
// populate donate list
|
||||
document.getElementById("donateqrcode").style.display = "none";
|
||||
var donatelist = document.getElementById("donatelist");
|
||||
|
|
Loading…
Add table
Reference in a new issue