Metadata-Version: 1.1
Name: django-esay-account
Version: 0.0.2
Summary: A simple Django app for accounts handle login & SingUp & logout.
Home-page: https://www.example.com/
Author: MHadi Ahmed
Author-email: mhadiahmed63@gmail.com
License: MIT License
Description: =====
        django-esay-account
        =====
        
        django-esay-account is a simple Django app for accounts handle login & SingUp & logout and User Profil tow
        
        
        
        Quick start
        -----------
        
        1. Add "django-esay-account" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
            'crispy_forms',
            'account',
            ]
          add this line for the crispy_froms
        
        	CRISPY_TEMPLATE_PACK = 'bootstrap3'
        
        2. Include the account URLconf in your project urls.py like this::
        
            url(r'^', include('account.urls')),
            
        
        3. add this 6 lines at the bottom in the settings files to handel the password reset.
        
        	EMAIL_BACKEND ='django.core.mail.backends.console.EmailBackend' 
        	DEFAULT_FROM_EMAIL = 'example@gmail.com'
        	EMAIL_HOST_USER = ''
        	EMAIL_HOST_PASSWORD = ''
        	EMAIL_USE_TLS = False 
        	EMAIL_PORT = 1025
        
        4. Run `python manage.py migrate` to create the django-esay-account models.
        
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a django-esay-account (you'll need the Admin app enabled).
        
        6. Visit http://127.0.0.1:8000/login/ to test the  django-esay-account.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
