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.
28 lines
590 B
28 lines
590 B
5 years ago
|
{% include 'header.html' %}
|
||
|
|
||
|
<h3>New Offer</h3>
|
||
|
{% for m in messages %}
|
||
|
<p>{{ m }}</p>
|
||
|
{% endfor %}
|
||
|
|
||
|
<form method="post">
|
||
|
<p>
|
||
|
<select name="coin_type"><option value="-1">-- Select Coin --</option>
|
||
|
{% for c in coins %}
|
||
|
<option value="{{ c[0] }}">{{ c[1] }}</option>
|
||
|
{% endfor %}
|
||
|
</select><br/>
|
||
|
<input type="text" name="cmd"><br/>
|
||
|
<input type="submit" value="Submit">
|
||
|
<input type="hidden" name="formid" value="{{ form_id }}">
|
||
|
</p>
|
||
|
</form>
|
||
|
|
||
|
{% if result %}
|
||
|
<textarea id="story" name="story" rows="40" cols="160">
|
||
|
{{ result }}
|
||
|
</textarea>
|
||
|
{% endif %}
|
||
|
|
||
|
<p><a href="/">home</a></p>
|
||
|
</body></html>
|