Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
414 B
23 lines
414 B
3 years ago
|
{% include 'header.html' %}
|
||
|
|
||
|
<h3>Debug</h3>
|
||
|
{% for m in messages %}
|
||
|
<p>{{ m }}</p>
|
||
|
{% endfor %}
|
||
|
|
||
|
<form method="post">
|
||
|
<p>
|
||
|
<input name="reinit_xmr" type="submit" value="Reinitialise XMR wallet" >
|
||
|
<input type="hidden" name="formid" value="{{ form_id }}">
|
||
|
</p>
|
||
|
</form>
|
||
|
|
||
|
{% if result %}
|
||
|
<textarea class="monospace" rows="40" cols="160">
|
||
|
{{ result }}
|
||
|
</textarea>
|
||
|
{% endif %}
|
||
|
|
||
|
<p><a href="/">home</a></p>
|
||
|
</body></html>
|