django-password-reset icon indicating copy to clipboard operation
django-password-reset copied to clipboard

Class-based views for password reset

Results 38 django-password-reset issues
Sort by recently updated
recently updated
newest added

from django.conf.urls import url (deprecated in Django 4.0) I use re_path the urls to solve this But also it throw an error on: from django.utils.translation import gettext_lazy as _ ugettext_lazy...

Hi, I think I implemented the library correctly: settings.py: INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'app10minmentors', 'password_reset', ] urls.py: url(r'^password_reset/',include('password_reset.urls',namespace="password_reset")), signin.html {% block content %} {% csrf_token...

https://docs.djangoproject.com/en/dev/internals/deprecation/#deprecation-removed-in-4-0

If you go to /password/recover/ and enter a valid username, it redirects to /password/recover//. If you enter an invalid username then it redirects to /password/recover/IiI/, which decodes to an empty...

Merge with all pull request sent.

There is no limit on the number of times the plug-in resets the password. You can reset it multiple times. You should add time and number restrictions. If the reset...

current password_reset/base.html is trying to extend 'base.html', which is not present in mast cases and hence it gives an error, so basically the whole thing doesn't work. Moreover nothing about...

Dear Mr. Bruno Renié, Thank you for creating a fantastic password reset module, with such a clean and elegant and modular design! For this pull request, I have made the...