Override Django-registration to log in by e-mail
Project description
Override django-registration-redux to log-in by e-mail. This package provides:
Log-in with e-mail or username
User-convenient messages for various cases in login and password reset form
Send password reset e-mail even for users without password
Includes phishing-safe next_url mechanism
Security note: For better user experience the password reset form informs users if the e-mail doesn’t exist in the system. This lowers security, because attacker can query the system whether the account exists or not. The risk is lowered by using captcha on the form, but still you should evaluate if this is secure enough for your system.
Documentation
The full documentation is at https://django-registration-with-email.readthedocs.io.
Quickstart
Install Django registration with email:
pip install django-registration-redux pip install django-registration-with-email
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'registration',
'django_registration_with_email',
'captcha',
...
)
Add Django registration with email’s URL patterns:
urlpatterns = [
...
path('accounts/', include('django_registration_with_email.urls')),
path('accounts/', include('registration.backends.default.urls')),
...
]
Set email as unique=True in your User model:
class User(TimeStampedModel, AbstractUser):
email = models.EmailField(
verbose_name='email address',
max_length=254,
blank=True,
null=True,
unique=True,
)
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Development commands
pip install -r requirements_dev.txt invoke -l
Credits
Tools used in rendering this package:
History
0.2.0 (2021-04-05)
Use django-registration-redux
0.1.0 (2021-03-01)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-registration-with-email-0.3.1.tar.gz
.
File metadata
- Download URL: django-registration-with-email-0.3.1.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 820523817eb48c73a79b6cfc3360b26d6eb5afe81dfc1170b3920c9005bd268c |
|
MD5 | 79464e7f4f6f6b7d059df30590402c3f |
|
BLAKE2b-256 | cfec22027d52fa053177d313260e2e66332dadde9f28bdf821f174f6ff874820 |