Skip to main content

A Django app to conduct web-based user authentication.

Project description

User Auth is a Django app to conduct web-based User Auth. For each question, visitors can choose between a fixed number of answers.

Detailed documentation is in the “docs” directory.

Quick start

1. Dependency you have to install: pip install django-phonenumber-field djangorestframework djangorestframework-simplejwt phonenumbers django-rest-passwordreset Pillow 1. Add “User Auth” to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
    ...
    'django_rest_passwordreset',
    'phonenumber_field',
    'user',

]
  1. Include the User Auth URLconf in your project urls.py like this:

    path('api/user/', include('user.urls')),
  2. Run python manage.py migrate to create the User Auth models.

  3. Start the development server and visit http://127.0.0.1:8000/admin/ to create a user (you’ll need the Admin app enabled).

  4. Visit http://127.0.0.1:8000/api/user/ to participate in the user auth.

  5. all the url for particular action is given below,

    user registration, url: http://127.0.0.1:8000/api/user/users/ , method: post, body: login, url: http://127.0.0.1:8000/api/user/auth/ , method: post, body: username,password update profile , http://127.0.0.1:8000/api/user/update_profile/ , method: post get user role, http://127.0.0.1:8000/api/user/user_role/ , method: get path(‘change_password/’,change_password),

    path(‘token/refresh/’, TokenRefreshView.as_view(), name=’token_refresh’), path(‘password_reset/’, include(‘django_rest_passwordreset.urls’, namespace=’password_reset’)),

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-user-auth-all-0.1.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

django_user_auth_all-0.1-py3-none-any.whl (8.5 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