65 lines
1.5 KiB
HTML
65 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Basic GRIDS Demo</title>
|
|
<link rel="stylesheet" href="/css/default.css">
|
|
</head>
|
|
<body>
|
|
<div id="titlebar">
|
|
<div class="content">
|
|
<a href="/" class="tb-home">Home</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1 class="content-title">FEWD: GRIDS DEMO</h1>
|
|
|
|
|
|
<h2>Making a Spend</h2>
|
|
|
|
<label for="grids-n">Network ID:</label>
|
|
<input type = "text"
|
|
id = "grids-n"
|
|
value = "groot.testnet"
|
|
disabled
|
|
></input>
|
|
<br>
|
|
|
|
<label for="grids-r">Recipient:</label>
|
|
<input type = "text"
|
|
id = "grids-r"
|
|
value = "ak_n6aVQ6PkBdVdv7kRRcfnzDVmBsH6hqEwVWSB6UAEb3kkjrPMe"
|
|
disabled
|
|
></input>
|
|
<br>
|
|
|
|
<label for="grids-a">Amount (P):</label>
|
|
<input type = "number"
|
|
id = "grids-a"
|
|
value = "6000000"
|
|
></input>
|
|
<br>
|
|
|
|
<label for="grids-p">Payload:</label>
|
|
<input type = "text"
|
|
id = "grids-p"
|
|
value = "test payload"
|
|
></input>
|
|
<br>
|
|
|
|
<input type = "button"
|
|
id = "grids-submit"
|
|
value = "Generate"
|
|
></input>
|
|
<br>
|
|
|
|
<textarea disabled id="grids-url" hidden></textarea>
|
|
<br>
|
|
<img id="grids-png" hidden></img>
|
|
</div>
|
|
|
|
<script src="/js/dist/grids-basic.js"></script>
|
|
</body>
|
|
</html>
|