flo-token-explorer-historic/app/templates/index.html
2018-12-06 15:46:23 +05:30

19 lines
480 B
HTML

{% extends "base.html" %}
{% block content %}
<br>
Enter FLO address associated with RMT
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.address.label }}<br>
{{ form.address(size=32) }}
{% for error in form.address.errors %}
<span style="color: red;">[{{ error }}]</span>
{% endfor %}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}