django-sitegate 1.3.3
pip install django-sitegate
Released:
Reusable application for Django to ease sign up & sign in processes
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD 3-Clause License)
- Author: Igor `idle sign` Starikov
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
Project description
http://github.com/idlesign/django-sitegate
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
Yandex
Google
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
Here follows the most straightforward way possible with django-sitegate to have both sign up & sign in functionality on your page.
Use sitegate_view decorator to mark your view as the one handling both signups and signins:
from django.shortcuts import render from sitegate.toolbox 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'})
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. Read the docs.
Documentation
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD 3-Clause License)
- Author: Igor `idle sign` Starikov
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
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
Built Distribution
File details
Details for the file django-sitegate-1.3.3.tar.gz
.
File metadata
- Download URL: django-sitegate-1.3.3.tar.gz
- Upload date:
- Size: 52.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f1906465bec7fd718c543fd015339785a5d32d270ab66e44df70a199be33391 |
|
MD5 | 182e86ed08adcfd0e3b1d3189d568240 |
|
BLAKE2b-256 | 82691f32be582e3881734fa6cf29217e270d8f680567f096cd13db3bda924a59 |
File details
Details for the file django_sitegate-1.3.3-py3-none-any.whl
.
File metadata
- Download URL: django_sitegate-1.3.3-py3-none-any.whl
- Upload date:
- Size: 64.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 321db13b23659cf2b6bc69a1d6de2821648e2afa86fd6c5ec48c64729595e5f5 |
|
MD5 | 2c2e79532650edd059bcd4a52edee485 |
|
BLAKE2b-256 | 1aa7f4e163ae8007351fb12133e9ec187756a42dfdf61f65d6729869712b00b5 |