Django Axor
LINKS
  • Home
  • GitHub Repository
DOCS
  • Installing Django Axor
  • Setting up Django Axor
  • Endpoints
  • In-built Auth Pages

    • Sign In
    • Sign Out
    • Verify Email
    • Magic Link
    • Forgot Password
  • Available Models to Use
  • Current Authenticated User
  • Session vs App Token Authentication
  • Authentication Decorators
v1.7.1 Docs

In-built Auth Pages

These pages are provided to lighten the development workload for this library's users. They are provided to perform basic functionality and have limited customization options.

Setup

Go to settings.py file and add the following to the INSTALLED_APPS list:

INSTALLED_APPS = [
    ...
    'django_axor_auth.web_auth',
    ...
]

Then, add the following to the urls.py file:

path('auth/', include('django_axor_auth.web_auth.urls'))

You should be able to navigate to http://localhost:8000/auth/ and see the login page.

Page List

  • Sign In
  • Magic Link Sign In
  • Sign Out
  • Forgot Password - Request and Process
  • Email Verification - Process

These are only available for session-based authentication, i.e. only web.

TABLE OF CONTENTS
  • Setup
  • Page List