Metadata-Version: 2.1
Name: django-login-auth-app
Version: 0.1
Summary: A Django app to login and signup users.
Home-page: UNKNOWN
Author: Robert Hassenmayer
Author-email: hassenr@proton.me
License: BSD-3-Clause  # Example license
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
License-File: LICENSE

=====
Login
=====

Login is a Django app to create, authenticate and login users.

Detailed documentation is in the "docs" directory.

Quick start
-----------

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

    INSTALLED_APPS = [
        ...
        "login_app.apps.LoginAppConfig",
    ]

2. Go to the bottom of your project setting.py and add::

    AUTH_USER_MODEL = "login_app.User"

3. Include the login_app URLconf in your project urls.py like this::

    path('auth/', include('login_app.urls')),

4. Run ``python manage.py migrate`` to create the User model.

5. Add your login/signup template to views.py login_view

6. Start the development server and visit http://127.0.0.1:8000/auth/login to see you login page



