You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.4 KiB

<div id="wallet" class="row text-center p-2 bg-light rounded-3">
<div class="col-md-4">
<h1><%= wallet.unlockedBalanceFormatted %></h1>
<p>Unlocked Balance</p>
</div>
<div class="col-md-4">
<img id="qr-code" class="border rounded-3" src="<%= wallet.qrCode %>" />
<p id="address"><small><%= wallet.primaryAddress %></small></p>
<p><small><b>Primary Address</b></small></p>
</div>
<div class="col-md-4">
<h1><%= wallet.balanceFormatted %></h1>
<p>Full Balance</p>
</div>
</div>
<br /><br />
<div class="row p-2 text-center">
<div class="col-md-4">
<p class="address"><%= wallet.privateViewKey %></p>
<p><small><b>Private View</b></small></p>
<p><small><a href="/help#view-key" title="Help - Private View Key"><i class="bi bi-question-circle"></i></a></small></p>
</div>
<div class="col-md-4 p-4">
<div class="d-grid gap-2">
<a href="/api/wallet/proof" class="btn btn-primary grad"><i class="bi bi-cloud-download"></i> Reserve Proof</a>
<br />
<p><small><a href="/help#reserve-proof" title="Help - Reserve Proof"><i class="bi bi-question-circle"></i></a></small></p>
</div>
</div>
<div class="col-md-4">
<p class="address"><%= wallet.publicSpendKey %></p>
<p><small><b>Public Spend</b></small></p>
<p><small><a href="/help#spend-key" title="Help - Public Spend Key"><i class="bi bi-question-circle"></i></a></small></p>
</div>
</div>
<br /><br />