Compare commits
13 Commits
master
...
seed-resto
Author | SHA1 | Date |
---|---|---|
lza_menace | 062dc0918a | 4 years ago |
lza_menace | a2174b8d03 | 4 years ago |
lza_menace | d0b573a11c | 4 years ago |
lza_menace | f2677349dc | 4 years ago |
lza_menace | 375bbe9b98 | 4 years ago |
lza_menace | 85ce2c2fb5 | 4 years ago |
lza_menace | 0167ce098c | 4 years ago |
lza_menace | d4a6e927f6 | 4 years ago |
lza_menace | ee8b65f87c | 4 years ago |
lza_menace | 951bbea61b | 4 years ago |
lza_menace | 1c1b032d87 | 4 years ago |
lza_menace | cfa81cf6d5 | 4 years ago |
lza_menace | 13b1b9e1a9 | 4 years ago |
Binary file not shown.
After Width: | Height: | Size: 216 KiB |
File diff suppressed because one or more lines are too long
@ -0,0 +1,51 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
{% include 'head.html' %}
|
||||||
|
|
||||||
|
<body id="page-top">
|
||||||
|
|
||||||
|
{% include 'navbar.html' %}
|
||||||
|
|
||||||
|
<section class="section2">
|
||||||
|
<div class="container">
|
||||||
|
<div class="section-heading text-center">
|
||||||
|
<h2>Setup Wallet</h2>
|
||||||
|
<p>Alrighty there hoss, pick an option below...</p>
|
||||||
|
|
||||||
|
<hr><br /><br />
|
||||||
|
|
||||||
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="{{ url_for('wallet.create') }}">Create new wallet</a>
|
||||||
|
|
||||||
|
<hr><br /><br />
|
||||||
|
|
||||||
|
<form method="POST" action="{{ url_for('wallet.setup') }}" class="send-form">
|
||||||
|
<p><strong>! WARNING !</strong><br /> If you input a mnemonic seed here I could theoretically steal your funds, even without a wallet on my server; so could a hacker if they compromised my server.</p>
|
||||||
|
<p>You <strong>can</strong> and <strong>should</strong> use a <a href="https://wownero.org/#wallets" target="_blank">wallet</a> you can run locally to ensure your funds are safe, especially if there is a lot there. Proceed at your own risk.</p>
|
||||||
|
{{ restore_form.csrf_token }}
|
||||||
|
{% for f in restore_form %}
|
||||||
|
{% if f.name != 'csrf_token' %}
|
||||||
|
<div class="form-group">
|
||||||
|
{{ f.label }}
|
||||||
|
{{ f }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
<ul>
|
||||||
|
{% for field, errors in restore_form.errors.items() %}
|
||||||
|
<li>{{ restore_form[field].label }}: {{ ', '.join(errors) }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
<input type="submit" value="Restore From Seed" class="btn btn-link btn-outline btn-xl">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{% include 'footer.html' %}
|
||||||
|
|
||||||
|
{% include 'scripts.html' %}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue