├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── quickstart.rst ├── signals.rst └── views.rst ├── password_reset ├── __init__.py ├── forms.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── signals.py ├── templates │ └── password_reset │ │ ├── base.html │ │ ├── recovery_done.html │ │ ├── recovery_email.txt │ │ ├── recovery_email_subject.txt │ │ ├── recovery_form.html │ │ ├── reset.html │ │ └── reset_sent.html ├── tests │ ├── __init__.py │ ├── models.py │ ├── settings.py │ ├── templates │ │ ├── 404.html │ │ └── base.html │ ├── test_app.py │ ├── urls.py │ └── views.py ├── urls.py └── views.py ├── runtests.py ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/signals.rst -------------------------------------------------------------------------------- /docs/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/docs/views.rst -------------------------------------------------------------------------------- /password_reset/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.0.0' 2 | -------------------------------------------------------------------------------- /password_reset/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/forms.py -------------------------------------------------------------------------------- /password_reset/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/ka/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/ka/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /password_reset/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /password_reset/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/signals.py -------------------------------------------------------------------------------- /password_reset/templates/password_reset/base.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /password_reset/templates/password_reset/recovery_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/recovery_done.html -------------------------------------------------------------------------------- /password_reset/templates/password_reset/recovery_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/recovery_email.txt -------------------------------------------------------------------------------- /password_reset/templates/password_reset/recovery_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/recovery_email_subject.txt -------------------------------------------------------------------------------- /password_reset/templates/password_reset/recovery_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/recovery_form.html -------------------------------------------------------------------------------- /password_reset/templates/password_reset/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/reset.html -------------------------------------------------------------------------------- /password_reset/templates/password_reset/reset_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/templates/password_reset/reset_sent.html -------------------------------------------------------------------------------- /password_reset/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /password_reset/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/models.py -------------------------------------------------------------------------------- /password_reset/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/settings.py -------------------------------------------------------------------------------- /password_reset/tests/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /password_reset/tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/templates/base.html -------------------------------------------------------------------------------- /password_reset/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/test_app.py -------------------------------------------------------------------------------- /password_reset/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/urls.py -------------------------------------------------------------------------------- /password_reset/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/tests/views.py -------------------------------------------------------------------------------- /password_reset/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/urls.py -------------------------------------------------------------------------------- /password_reset/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/password_reset/views.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-password-reset/HEAD/tox.ini --------------------------------------------------------------------------------