Skip to main content

Login, Registration, Reset password, ActivateUser

Project description

#Django AUTH

###installing
pip install django_auth2

in your project.settings

INSTALLED_APPS = [
...
'django.contrib.auth',
'django_auth2',
]

in your project.urls

...
url(r'', include('django_auth2.urls')),
...

in User model change mail

email = models.EmailField(unique=True, blank=False)

For send mail (example):

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'my_mail@gmail.com'
EMAIL_HOST_PASSWORD = 'my_pass'
EMAIL_PORT = 587

password reset days in project.settings

PASSWORD_RESET_TIMEOUT_DAYS = 1

Your need create view with name "index" for redirect (after authentication)


celery
[first state with celery. django]: http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html

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_auth2-0.0.5.tar.gz (13.6 kB view hashes)

Uploaded Source

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