templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:35:18 +0530
changeset 276 c8c47fcb46f0
parent 260 8b891483e052
permissions -rw-r--r--
created a view for view notification and included the url. made changes accordingly in browse notifications

{% extends 'base.html' %}
{% block content %}
<form action="/accounts/register/" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}