Metadata-Version: 2.1
Name: draj-auth-module
Version: 1.3
Summary: django user login register and logout module
Home-page: https://www.trootech.com/
Author: Dharmrajsinh Gohil
Author-email: dharmrajsinh.gohil@trootech.com
Maintainer: Dharmrajsinh
Maintainer-email: dharmrajsinh.gohil@trootech.com
License: MIT
Keywords: django auth module
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE


Quick Start
===========

1. Add "account" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [

        ...
        'account',


    ]

2. Include the polls URLconf in your project urls.py like this:
    path('', include('account.urls')),

3. Run ``python manage.py migrate`` to create the user models

4. Start the development server and visit http://127.0.0.1:8000/ to create a new user login register
