basicswap_miserver/basicswap/templates/debug.html
2021-11-24 23:54:31 +02:00

23 lines
414 B
HTML

{% 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>