summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 09:54:46 +0530
committerNishanth Amuluru2011-01-07 09:54:46 +0530
commit824218ea24be4a08061092a8878cc88dedb3bd8f (patch)
tree23cd8ec5590c942cf5a1b1068e2ab3e1ebbda291
parenta460fc5bf10716af5084dd2916348633ca95448d (diff)
downloadpytask-824218ea24be4a08061092a8878cc88dedb3bd8f.tar.gz
pytask-824218ea24be4a08061092a8878cc88dedb3bd8f.tar.bz2
pytask-824218ea24be4a08061092a8878cc88dedb3bd8f.zip
Added template for creating a login
-rw-r--r--templates/registration/registration_form.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html
new file mode 100644
index 0000000..37ee9d9
--- /dev/null
+++ b/templates/registration/registration_form.html
@@ -0,0 +1,8 @@
+{% extends 'base.html' %}
+{% block content %}
+<form action="/accounts/register/" method="post">
+{% csrf_toekn %}
+{{ form.as_p }}
+<input type="submit" value="Submit" />
+</form>
+{% endblock %}