You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
526 B
HTML
11 lines
526 B
HTML
<form hx-post="{{ url_for('wallet.add') }}" id="import_wallet">
|
|
<label for="label">Label</label>
|
|
<input type="text" name="label" />
|
|
<label for="seed">Mnemonic Seed</label>
|
|
<p class="subtext">12, 13, or 25 word seeds</p>
|
|
<input type="password" name="seed" />
|
|
<label for="restore_height">Restore Height</label>
|
|
<input type="number" name="restore_height" />
|
|
<button onclick="document.getElementById('import_wallet').innerHTML = ''">Cancel</button>
|
|
<button type="submit">Import</button>
|
|
</form> |