it/itf/templates/registration/contact.html

26 lines
503 B
HTML
Raw Normal View History

2011-10-13 16:35:32 +05:30
{% 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 16:01:59 +05:30
<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 16:35:32 +05:30
<table>
2011-10-25 16:01:59 +05:30
2011-10-13 16:35:32 +05:30
{{ form.as_table }}
2011-10-25 22:27:35 +01:00
<tr>
<td>
</td>
<td>
<input type="submit" value="Submit" />
</td>
2011-10-13 16:35:32 +05:30
</table>
</form>
2011-11-01 03:51:14 +00:00
{% endif %}
2011-10-13 16:35:32 +05:30
{% endblock %}