Metadata-Version: 1.0
Name: django_auth2
Version: 0.0.7
Summary: Login, Registration, Reset password, ActivateUser
Home-page: https://github.com/Nick1994209/django-auth2/
Author: nick1994209
Author-email: nick1994209@gmail.com
License: MIT
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
Platform: UNKNOWN
