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.
10 lines
532 B
HTML
10 lines
532 B
HTML
<form hx-post="{{ url_for('wallet.add') }}" id="import_wallet">
|
|
<label for="address">Address</label>
|
|
<input type="text" name="address" value="{{ request.args.get('address', '') }}" />
|
|
<label for="view_key">Secret View Key</label>
|
|
<input type="text" name="view_key" />
|
|
<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> |