Added template for creating a login
authorNishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 09:54:46 +0530
changeset 20 0e8d0f5474f2
parent 19 46e07d429ea1
child 21 3efb40900b87
Added template for creating a login
templates/registration/registration_form.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/registration/registration_form.html	Fri Jan 07 09:54:46 2011 +0530
@@ -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 %}