Skip to main content

A Django app to authenticate and register user using phone/email/username.

Project description

django-phone-auth

A Django app to authenticate and register user using phone/email/username. It uses default User Model.

Installation

pip install django-phone-auth

Add 'phone_auth' in INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'phone_auth'
]

Add 'phone_auth.backend.CustomAuthBackend' in AUTHENTICATION_BACKENDS.

AUTHENTICATION_BACKENDS = [
    'django.contrib.auth.backends.ModelBackend',
    ...
    'phone_auth.backend.CustomAuthBackend',
]

Add 'path('accounts/', include('phone_auth.urls'))' in urls.py

urlpatterns = [
    ...
    path('accounts/', include('phone_auth.urls'))
]

Now run command -

python manage.py migrate

Usage

On registration page ('accounts/register/') by default first_name, last_name, email and username is optional. These can be set to required by adding following variables in settings.py

REGISTER_USERNAME_REQUIRED = True
REGISTER_EMAIL_REQUIRED = True
REGISTER_FNAME_REQUIRED = True
REGISTER_LNAME_REQUIRED = True

On login page ('accounts/login/') by default user can only login with phone. To allow login through username/email/phone add following in settings.py

LOGIN_METHODS = {'email', 'phone', 'username'}

Note: LOGIN_METHODS can't be empty

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

django-phone-auth-0.1.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

django_phone_auth-0.1-py3-none-any.whl (10.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page