templates/register.html
author anoop
Thu, 03 Jun 2010 19:06:14 +0530
branchanoop
changeset 26 212fcba4459e
parent 11 dad0085f039b
child 30 11f828503666
permissions -rw-r--r--
changed the app to work with apache + added base.html, and did needed changes.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 11
diff changeset
     1
{% extends 'base.html' %}
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 11
diff changeset
     2
{% block content %}
11
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     3
<form action="" method="post">
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     4
{{form.as_p}}
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     5
<!-- 
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     6
Terms and Conditions: <br />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     7
<textarea rows=10 cols=50>
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     8
Terms and Conditions here.
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     9
</textarea><br />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    10
-->
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    11
<input type="submit" value="Register" />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    12
</form>
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 11
diff changeset
    13
{% endblock %}