pytask/templates/registration/login.html
changeset 417 b37e541bf950
parent 364 2763afa1c2a2
child 435 1217d808d70f
--- a/pytask/templates/registration/login.html	Sat Jan 15 21:21:19 2011 +0530
+++ b/pytask/templates/registration/login.html	Sat Jan 15 21:21:49 2011 +0530
@@ -1,9 +1,9 @@
 {% extends 'base.html' %}
 {% block content %}
-<form action="/accounts/login/" method="post">
+<form action="{% url auth_login %}" method="post">
 {% csrf_token %}
 {{ form.as_p }}
 <input type="submit" value="Login" />
 </form>
-<a href="/accounts/password/reset">Forgot password?</a>
+<a href="{% url auth_password_reset %}">Forgot password?</a>
 {% endblock %}