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.
24 lines
775 B
HTML
24 lines
775 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
<a href="/utils">Go Back</a>
|
|
<h1>Parse Mnemonic Seed</h1>
|
|
<form method="post">
|
|
<label for="seed">12, 13, or 25 Word Seed</label>
|
|
<input type="password" name="seed" />
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
{% if results %}
|
|
<h2>Results</h2>
|
|
<p>Public Address: <span class="key">{{ results.public_address() }}</span></p>
|
|
<p>Public Spend Key: <span class="key">{{ results.public_spend_key() }}</span></p>
|
|
<p>Public View Key: <span class="key">{{ results.public_view_key() }}</span></p>
|
|
<p>Secret Spend Key: <span class="key">{{ results.secret_spend_key() }}</span></p>
|
|
<p>Secret View Key: <span class="key">{{ results.secret_view_key() }}</span></p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|