it/itf/templates/registration/contact.html
2011-12-08 09:49:39 -05:00

26 lines
503 B
HTML
Executable File

{% extends 'registration/register_base.html' %}
{% block reg_content %}
{% if success %}
<p id="titleLogin">Thanks for your message.</p>
{% else %}
<p id="titleLogin">Write to us</p>
<form action="" method="POST" id="formItf">
{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
<td>
</td>
<td>
<input type="submit" value="Submit" />
</td>
</table>
</form>
{% endif %}
{% endblock %}