Note that there are some explanatory texts on larger screens.

plurals
  1. PObuiltin password reset view problem in django1.3
    text
    copied!<p><p>Hi am absolutely new to django,Now I am tring for builtin <b>reset password view.</b>.<br/> I follow the link <a href="http://ygamretuta.me/2011/02/08/django-1-2-auth-part-3-password-resets-and-changes/" rel="nofollow">link</a> But I got the error when I click on reset password button at /password_reset/ : <br/><b>error at /accounts/password_reset/ </p> <pre><code>[Errno 10061] No connection could be made because the target machine actively refused it. Exception Location: C:\Python27\lib\socket.py in create_connection, line 571 'urls.py' </code></pre> <p>(r'^accounts/password_reset$','django.contrib.auth.views.password_reset'</b>,'template_name':'user/password_reset_form.html','email_template_name':'user/password_reset_email.html'}),</p> <p>(r'^accounts/password/reset/confirm/(?P[0-9A-Za-z]{1,13})-(?P[0-9Aa-z]{1,13}-[0-9A-Za-z]{1,20})/$',<b> 'django.contrib.auth.views.password_reset_confirm'</b>, {'template_name' : 'user/password_reset.html', 'post_reset_redirect': '/logout/' }),</p> <pre><code> (r'^accounts/password_reset/done/$',&lt;b&gt;'django.contrib.auth.views.password_reset_done'&lt;/b&gt;,{'template_name':'user/password_reset_done.html'}), (r'^accounts/change_password/$',&lt;b&gt; 'password_change'&lt;/b&gt;, {'post_change_redirect' : '/accounts/change_password/done/'}), (r'^accounts/change_password/done/$',&lt;b&gt; 'password_change_done'&lt;/b&gt;,{'template_name':'user/password_change_done.html'}), &lt;b&gt;password_reset_email.html&lt;/b&gt; {% extends 'base.html'%} {% block content%} {% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %} {% endblock %} </code></pre> <p>I add necessary templates in the folder 'user'.<br/>Please help me,Thanks in advance.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload