templates/register.html
author nishanth
Wed, 14 Jul 2010 11:51:05 +0530
branchanoop
changeset 80 c200156c80a9
parent 30 11f828503666
permissions -rw-r--r--
fixed a bug that arises when a query does not have any parameters to filter

{% extends 'base.html' %}
{% block title %}
Registration
{% endblock %}
{% block content %}
<h2>Registration</h2>
<form action="" method="post">
{{form.as_p}}
<!-- 
Terms and Conditions: <br />
<textarea rows=10 cols=50>
Terms and Conditions here.
</textarea><br />
-->
<input type="submit" value="Register" />
</form>
{% endblock %}