{% extends "base.html" %} {% block content %}
Enter FLO address associated with RMT
{{ form.hidden_tag() }}

{{ form.address.label }}
{{ form.address(size=32) }} {% for error in form.address.errors %} [{{ error }}] {% endfor %}

{{ form.submit() }}

{% endblock %}