mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-01-31 02:52:14 +00:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Zcash Demo Wallet</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to your demo Zcash wallet!</h1>
|
|
<p>You can interact with it using a <code>zcashd</code> testnet node.</p>
|
|
<div id="zcash-client-loading">
|
|
<h2>Loading...</h2>
|
|
</div>
|
|
<div id="zcash-client-content" style="display: none">
|
|
<h2 id="zcash-client-address"></h2>
|
|
<p>That's your Zcash address!</p>
|
|
<h2 id="zcash-client-balance"></h2>
|
|
<h2 id="zcash-client-spendable-balance"></h2>
|
|
<table id="zcash-client-yes-balance">
|
|
<tr>
|
|
<td><label for="zcash-client-send-to-address">To:</label></td>
|
|
<td><input id="zcash-client-send-to-address" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="zcash-client-send-value">Amount:</label></td>
|
|
<td><input id="zcash-client-send-value" type="number" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><button id="zcash-client-send-action">Send!</button></td>
|
|
</tr>
|
|
</div>
|
|
<p id="zcash-client-no-balance">You have no TAZ. Go <a href="https://faucet.testnet.z.cash/" target="blank">here</a> to get some!</p>
|
|
<p id="zcash-client-sync-status">Syncing...</p>
|
|
</div>
|
|
<script src="./bootstrap.js"></script>
|
|
</body>
|
|
</html>
|