26 lines
442 B
HTML
26 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Do you want to sign this transaction?</title>
|
|
</head>
|
|
<body>
|
|
<h1>Do you want to sign this transaction?</h1>
|
|
|
|
<h2>Tx Base64</h2>
|
|
<pre id="tx-base64"></pre>
|
|
|
|
|
|
<h2>Tx Decomposed info</h2>
|
|
<pre id="tx-decomposed"></pre>
|
|
|
|
<br>
|
|
<button id="good">Yes</button>
|
|
<br>
|
|
<button id="bad">No</button>
|
|
|
|
<script type="module" src="../dist/tx_confirm.js"></script>
|
|
|
|
<body>
|
|
</html>
|