GithubHelp home page GithubHelp logo

amirvalie / django_phone_login Goto Github PK

View Code? Open in Web Editor NEW
14.0 1.0 0.0 121 KB

Register and login with password or SMS code verification to verify the user account.and other features such as forgetting the password and set the password.

Python 100.00%
authentication django otp python sms djangorestframework

django_phone_login's Introduction

Django Phone Login

Django Phone Login with both SMS verification and password

Description

With this package, you can login or register with a password or SMS code verification to verify the user account. This package also has other features such as forgetting the password and changing the password.

Dependencies

  • Django

Installing

Executing program

  • Configuration settings.py
INSTALLED_APPS += [
    ... 

    'django_phone_login'
]

AUTHENTICATION_BACKENDS = [
    'django_phone_login.backend.phone_backend.PhoneBackend',
    'django.contrib.auth.backends.ModelBackend'
]

MIDDLEWARE = [
    ...

    'django_phone_login.middleware.IpAddressMiddleware',

]

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
    }
}

AUTH_USER_MODEL = 'django_phone_login.User'
  • Add these fields to the settings to control the restrictions
EXPIRE_CACHE=20
DURATION_OF_OTP_VALIDATY=2
PHONE_LOGIN_ATTEMPTS=10
  • Add the below urls.py
urlpatterns = [
    path('user/', include('django_phone_login.urls'),name='phone_login'),
]

Authors

Contributors names and contact info

Amirhossein Valie [email protected]

django_phone_login's People

Contributors

amirvalie avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.