Skip to main content

Reusable application for Django to ease sign up & sign in processes

Project description

http://github.com/idlesign/django-sitegate

https://badge.fury.io/py/django-sitegate.png https://pypip.in/d/django-sitegate/badge.png

What’s that

django-sitegate is a reusable application for Django to ease sign up & sign in processes.

This application will handle most common user registration and log in flows for you.

Sign in

  • username/e-mail + password

  • username + password

Sign up

  • username/e-mail + password

  • invitation code + username/e-mail + password

  • username + password

  • username + e-mail + password

  • username + password + password confirmation

  • username + e-mail + password + password confirmation

Quick example

  • Add the sitegate application to INSTALLED_APPS in your settings file (usually ‘settings.py’).

  • Make sure TEMPLATE_CONTEXT_PROCESSORS in your settings file has django.core.context_processors.request.

Here follows the most straightforward way possible with django-sitegate to have both sign up & sign in functionality on your page.

  1. Use sitegate_view decorator to mark your view as the one handling both signups and signins:

    from django.shortcuts import render
    
    from sitegate.decorators import sitegate_view
    
    @sitegate_view  # This also prevents logged in users from accessing our sign in/sign up page.
    def entrance(request):
        return render(request, 'entrance.html', {'title': 'Sign in & Sign up'})
  2. Then in your template load sitegate tag library and put sitegate_signup_form & sitegate_signin_form tags in place where you want a registration and sign in forms to be.

    {% extends "_base.html" %}
    {% load sitegate %}
    
    {% block page_contents %}
        <div class="my_signin_block">
            {% sitegate_signin_form %}
        </div>
        <div class="my_signup_block">
            {% sitegate_signup_form %}
        </div>
    {% endblock %}

You’re done. Now your site visitors have an e-mail + password form to register and username/e-mail + password form to log in.

And mind that we’ve barely made a scratch of sitegate.

Documentation

http://django-sitegate.readthedocs.org/

Project details


Download files

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

Source Distribution

django-sitegate-0.8.0.tar.gz (36.6 kB view details)

Uploaded Source

File details

Details for the file django-sitegate-0.8.0.tar.gz.

File metadata

File hashes

Hashes for django-sitegate-0.8.0.tar.gz
Algorithm Hash digest
SHA256 f663c7d731c3a509d19afa32db30d95d31f940e915ef6f7b84e8131ba97e8e64
MD5 0d90e1e034317d2822793c1c93f3709f
BLAKE2b-256 18b66a0673b86b44ac575079024dc7e9e0a4e041fe7b2c90776b15cdc2d8d03f

See more details on using hashes here.

Supported by

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