[Answer]-Custom password_reset_form returning: unhashable type: 'dict'

1👍

Your arguments for url isn’t right. Should be one dictionary

url(r'^accounts/password/reset/$', 
    'django.contrib.auth.views.password_reset', 
    {'password_reset_form': MyPasswordResetForm,
     'post_reset_redirect': '/user/password/reset/done/'}),

Leave a comment