templates/register.html
author nishanth
Fri, 03 Sep 2010 16:31:22 +0530
branchanoop
changeset 244 f0d2036b6613
parent 30 11f828503666
permissions -rw-r--r--
moved template to correct place
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' %}
30
11f828503666 changed the theme.
anoop
parents: 26
diff changeset
     2
{% block title %}
11f828503666 changed the theme.
anoop
parents: 26
diff changeset
     3
Registration
11f828503666 changed the theme.
anoop
parents: 26
diff changeset
     4
{% endblock %}
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 11
diff changeset
     5
{% block content %}
30
11f828503666 changed the theme.
anoop
parents: 26
diff changeset
     6
<h2>Registration</h2>
11
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     7
<form action="" method="post">
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     8
{{form.as_p}}
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
     9
<!-- 
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    10
Terms and Conditions: <br />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    11
<textarea rows=10 cols=50>
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    12
Terms and Conditions here.
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    13
</textarea><br />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    14
-->
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    15
<input type="submit" value="Register" />
dad0085f039b added basic register.html
nishanth
parents:
diff changeset
    16
</form>
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 11
diff changeset
    17
{% endblock %}