mirror of
https://github.com/embarklabs/dapp-bin.git
synced 2026-09-01 06:01:15 +00:00
40 lines
1006 B
HTML
40 lines
1006 B
HTML
<html>
|
|
<head>
|
|
<title>Embark</title>
|
|
<link rel="stylesheet" href="css/app.css">
|
|
<script src="js/app.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="deployToken">
|
|
<h3>Deploy new Token</h3>
|
|
<input placeholder="enter token supply" />
|
|
<button>Deploy</button>
|
|
<div class="result"></div>
|
|
</div>
|
|
|
|
<div id="useToken">
|
|
<h3>Token Address</h3>
|
|
<input placeholder="enter token address" />
|
|
<button>Use this Token</button>
|
|
<div class="result"></div>
|
|
</div>
|
|
|
|
<div id="queryBalance">
|
|
<h3>Query Balance</h3>
|
|
<input placeholder="enter account address: e.g 0x123" />
|
|
<button>Query</button>
|
|
<div class="result"></div>
|
|
</div>
|
|
|
|
<div id="transfer">
|
|
<h3>Transfer Tokens</h3>
|
|
<input class="address" placeholder="enter account address: e.g 0x123" />
|
|
<input class="num" placeholder="enter amount to transfer" />
|
|
<button>Transfer</button>
|
|
<div class="result"></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|