summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 10:02:02 +0530
committerNishanth Amuluru2011-01-07 10:02:02 +0530
commit859199f9ad567aba25f207fe915c878321473bbc (patch)
tree95ee9e7474407f965d1f8dc135ac764d90aa675c /templates
parentf5b850e8b53df61b8f0d20e215543e5ddc595c1d (diff)
downloadpytask-859199f9ad567aba25f207fe915c878321473bbc.tar.gz
pytask-859199f9ad567aba25f207fe915c878321473bbc.tar.bz2
pytask-859199f9ad567aba25f207fe915c878321473bbc.zip
fixed a typo and set the settings required for django registration
Diffstat (limited to 'templates')
-rw-r--r--templates/registration/registration_form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html
index 37ee9d9..2b8b9aa 100644
--- a/templates/registration/registration_form.html
+++ b/templates/registration/registration_form.html
@@ -1,7 +1,7 @@
{% extends 'base.html' %}
{% block content %}
<form action="/accounts/register/" method="post">
-{% csrf_toekn %}
+{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>