75 lines
2.2 KiB
HTML
75 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
body {
|
|
background: #d6efff;
|
|
width: 400px;
|
|
font-family: monospace, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<table width="100%" style="background: #dad1ff; border: 2px solid #6c5d96; border-radius: 5px;">
|
|
<tr>
|
|
<td><img src="../art/jrx-icon-48.png" style="width: 32px; height: 32px;"></td>
|
|
<td style="font-size: 32px; text-align: center; font-weight: bold">
|
|
JÆCK RUSSELL
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div style="margin-top: 5px; width: 95%; background: #d9ffd6; border: 1px solid #6c5d96; border-radius: 5px;">
|
|
<table >
|
|
<tr>
|
|
<td><img src="../art/keypair.svg" style="width: 32px; height: 32px;"></td>
|
|
<td style="justify-content: center; font-size: 28px; text-align: center; font-weight: bold">
|
|
KEYPAIRS
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<p id="no-keypairs">You have no keypairs yet. Either generate a new one or
|
|
recover one you already have.</p>
|
|
<ul id="keypairs"></ul>
|
|
<!-- recover from faert phrase -->
|
|
<form>
|
|
<button id="generate-btn">Generate New Keypair</button>
|
|
</form>
|
|
<!-- recover from faert phrase -->
|
|
<form>
|
|
<label for="faert-input">FÆRT Phrase:</label>
|
|
<input id="faert-input"></input>
|
|
<button id="faert-btn">Recover Keypair from FÆRT Phrase</button>
|
|
</form>
|
|
<!-- recover from seed phrase
|
|
<form>
|
|
<label for="seed-input">Seed Phrase:</label>
|
|
<input id="seed-input"></input>
|
|
<button id="seed-btn">Recover Keypair from Seed Phrase</button>
|
|
</form>
|
|
-->
|
|
</div>
|
|
|
|
<pre id="scratch"></pre>
|
|
|
|
<!--
|
|
<div style="margin-top: 5px; width: 95%; background: #d9ffd6; border: 1px solid #6c5d96; border-radius: 5px;">
|
|
<table>
|
|
<tr>
|
|
<td><img src="../art/keypair.svg" style="width: 32px; height: 32px;"></td>
|
|
<td style="justify-content: center; font-size: 28px; text-align: center; font-weight: bold">
|
|
KEYPAIRS
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
-->
|
|
|
|
|
|
<script type="module" src="./dist/popup.js"></script>
|
|
</body>
|
|
</html>
|