Skip to main content

DjaoDjin's Implementation of Frictionless Sign Up

Project description

This code a frictionless signup Django app.

The app will register and login a user with as little as only an email address.

When the user logs out and tries to logs back in with the same email address, the app will first verify the email address through an activation url send to the registered email address. Setting the password is deferred to after the email address has been verified.

If during the first login and/or subsequent login, the email address should be verified before moving forward (ex: before presenting a payment view), you should decorate the view with an active_required decorator.

Tested with

  • Python: 3.6, Django: 2.2 ([LTS](https://www.djangoproject.com/download/)), Django Rest Framework: 3.12

  • Python: 3.6, Django: 3.2 (latest), Django Rest Framework: 3.12

  • Python: 2.7, Django: 1.11 (legacy), Django Rest Framework: 3.9.4

This project contains bare bone templates which are compatible with Django and Jinja2 template engines. To see djaodjin-signup in action as part of a full-fledged subscription-based session proxy, take a look at [djaoapp](https://github.com/djaodjin/djaoapp/).

Install

Add the signup urls to your urlpatterns and EmailOrUsernameModelBackend to the settings AUTHENTICATION_BACKENDS.

urls.py:

urlpatterns = (‘’,

(r’^api/’, include(‘signup.urls.api’)), (r’^’, include(‘signup.urls.views’)),

)

settings.py:

AUTHENTICATION_BACKENDS = (

‘signup.backends.auth.EmailOrUsernameModelBackend’, ‘django.contrib.auth.backends.ModelBackend’

)

To make the application useable accross a variety of websites, signup never sends any e-mails directly. It relies on triggering signals whenever a notification must be generated. As a result, to verify a user email address and activate her account, you will need to implement a listener for the user_verification signal and send the e-mail from there.

Development

After cloning the repository, create a virtualenv environment, install the prerequisites, create and load initial data into the database, then run the testsite webapp.

$ python -m venv .venv $ source .venv/bin/activate $ pip install -r testsite/requirements.txt $ make vendor-assets-prerequisites $ make initdb $ python manage.py runserver

# Browse http://localhost:8000/

Release Notes

0.5.0

  • works with Django3.2

  • prepares Vue3 migration

  • keeps same activation key accross multiple clicks on an e-mail backlink

[previous release notes](changelog)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

djaodjin-signup-0.5.1.tar.gz (71.1 kB view details)

Uploaded Source

File details

Details for the file djaodjin-signup-0.5.1.tar.gz.

File metadata

  • Download URL: djaodjin-signup-0.5.1.tar.gz
  • Upload date:
  • Size: 71.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.9

File hashes

Hashes for djaodjin-signup-0.5.1.tar.gz
Algorithm Hash digest
SHA256 5176e6cd4c3fb226d2ded918aa8cb4db464bdc50b0da6e4f78128c50152a8512
MD5 9ca3bfa8056cc62f010f2bf7e4030bf2
BLAKE2b-256 91318031fccfeb280fcc703a61849d5755662f917c32a46f48b2d0011ecc5f39

See more details on using hashes here.

Supported by

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