deleted unwanted files/templates to start using django-registration(contd..).
authoranoop
Wed, 17 Feb 2010 17:48:51 +0530
changeset 41 b742f22b62d1
parent 40 43853e376bb8
child 42 9b5b8c997598
deleted unwanted files/templates to start using django-registration(contd..).
templates/user/login.html
templates/user/register.html
--- a/templates/user/login.html	Wed Feb 17 17:46:16 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-{% extends 'base.html' %}
-{% block content %}
-<form action="/accounts/login/" method="post">
-    {{ form.as_p }}
-
-{% if errors %}
-    <p style="color: red;">
-        Please correct the error{{ errors|pluralize }} below.
-        {% for i in errors %}
-            <br>{{ i }}
-        {% endfor %}
-    </p>
-{% endif %}
-
-<input type="submit" value="Submit" />
-</form>
-{% endblock %}
--- a/templates/user/register.html	Wed Feb 17 17:46:16 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-{% extends 'base.html' %}
-{% block content %}
-<form action="/accounts/register/" method="post">
-    {{ form.as_p }}
-
-{% if errors %}
-    <p style="color: red;">
-        Please correct the error{{ errors|pluralize }} below.
-        {% for i in errors %}
-            <br>{{ i }}
-        {% endfor %}
-    </p>
-{% endif %}
-
-<input type="submit" value="Submit" />
-</form>
-{% endblock %}