it/itf/templates/registration/contact.html

26 lines
503 B
HTML
Raw Normal View History

2011-10-13 11:05:32 +00:00
{% extends 'registration/register_base.html' %}
{% block reg_content %}
2011-11-01 03:51:14 +00:00
{% if success %}
<p id="titleLogin">Thanks for your message.</p>
{% else %}
2011-10-25 10:31:59 +00:00
<p id="titleLogin">Write to us</p>
2011-11-01 03:51:14 +00:00
<form action="" method="POST" id="formItf">
{% csrf_token %}
2011-10-13 11:05:32 +00:00
<table>
2011-10-25 10:31:59 +00:00
2011-10-13 11:05:32 +00:00
{{ form.as_table }}
2011-10-25 21:27:35 +00:00
<tr>
<td>
</td>
<td>
<input type="submit" value="Submit" />
</td>
2011-10-13 11:05:32 +00:00
</table>
</form>
2011-11-01 03:51:14 +00:00
{% endif %}
2011-10-13 11:05:32 +00:00
{% endblock %}