Metadata-Version: 2.1
Name: django-phone-auth
Version: 0.2
Summary: A Django app to authenticate and register user using phone/email/username.
Home-page: https://github.com/samyakjain101/django-phone-auth
Author: Samyak Jain
Author-email: samyakjain101@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: django
Requires-Dist: django-phonenumber-field[phonenumbers]

# django-phone-auth
A Django app to authenticate and register users using phone/email/username. It uses the default User Model.

## Installation
```
pip install django-phone-auth
```

Add 'phone_auth' in INSTALLED_APPS.

```python
INSTALLED_APPS = [
    ...
    'phone_auth',
    ...
]
```

Add 'phone_auth.backend.CustomAuthBackend' in AUTHENTICATION_BACKENDS.

```python
AUTHENTICATION_BACKENDS = [
    ...
    # Needed to login by username in Django admin, regardless of `django-phone-auth`
    'django.contrib.auth.backends.ModelBackend',

    # `django-phone-auth` specific authentication methods, such as login by phone/email/username.
    'phone_auth.backend.CustomAuthBackend',
    ...
]
```

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

```python
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

```python
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 the following in settings.py
```python
LOGIN_METHODS = {'email', 'phone', 'username'}
```

Note: LOGIN_METHODS can't be empty

## Override templates

To override templates, create a folder 'templates' in the base directory (the directory which contains the 'manage.py' file).
Now add the path to this folder in settings.py. It will look like this -

```python
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [BASE_DIR / 'templates'],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]
```

Now in templates folder, you can create file 'register.html', 'login.html' and templates will get overriden.

