Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brutasse/django-password-reset
Class-based views for password reset
https://github.com/brutasse/django-password-reset
Last synced: 18 days ago
JSON representation
Class-based views for password reset
- Host: GitHub
- URL: https://github.com/brutasse/django-password-reset
- Owner: brutasse
- License: bsd-3-clause
- Created: 2012-04-29T15:24:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T22:14:06.000Z (7 months ago)
- Last Synced: 2024-10-01T10:49:04.098Z (about 1 month ago)
- Language: Python
- Homepage: https://django-password-reset.readthedocs.io
- Size: 151 KB
- Stars: 278
- Watchers: 18
- Forks: 136
- Open Issues: 34
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Django-password-reset
=====================.. image:: https://travis-ci.org/brutasse/django-password-reset.svg?branch=master
:alt: Build Status
:target: https://travis-ci.org/brutasse/django-password-resetClass-based views for password reset, the usual "forget password?" workflow:
* User fills his email address or username
* Django sends him an email with a token to reset his password
* User chooses a new passwordThe token is not stored server-side, it is generated using Django's signing
functionality.* Author: Bruno Renié and `contributors`_
* Licence: BSD
* Compatibility: Django 3+
* Python 3+
.. _contributors: https://github.com/brutasse/django-password-reset/contributorsInstallation
------------* ``pip install -U django-password-reset``
* Add ``password_reset`` to your ``INSTALLED_APPS``
* Include ``password_reset.urls`` in your root ``urls.py``For extensive documentation see the ``docs`` folder or `read it on
readthedocs`_.. _read it on readthedocs: https://django-password-reset.readthedocs.io/
To install the `in-development version`_ of django-password-reset, run ``pip
install django-password-reset==dev``... _in-development version: https://github.com/brutasse/django-password-reset/tarball/master#egg=django-password-reset-dev
Bugs
----Really? Oh well... Please Report. Or better, fix :)