Metadata-Version: 2.1
Name: django-allauth-simple-ui
Version: 0.1.2
Summary: Simple templates for django-allauth
Home-page: https://github.com/ThuanD/django-allauth-simple-ui
Author: kai
Author-email: thuan.dv0@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: django (>=5.1.1,<6.0.0)
Requires-Dist: django-allauth (>=65.0.2,<66.0.0)
Requires-Dist: django-bootstrap5 (>=24.3,<25.0)
Requires-Dist: jwt (>=1.3.1,<2.0.0)
Project-URL: Repository, https://github.com/ThuanD/django-allauth-simple-ui
Description-Content-Type: text/markdown

# Django AllAuth Simple UI

![django-allauth-simple-ui](./django-allauth--simple-ui.png)

UI templates for [django-allauth](https://github.com/pennersr/django-allauth)


## Simple usage

1. Install by running the following command
 ```bash
 pip install django-allauth-simple-ui
 ```

2. Add the following settings to your `settings.py` file
 ```python
 INSTALLED_APPS = [
     'allauth_ui',
     'allauth',
     # etc
 ]
 
 # example custom for accounts settings 
ALLAUTH_UI = dict(
    LOGIN_URL="/login/",
    LOGIN_REDIRECT_URL="/",
    LOGOUT_REDIRECT_URL="/",
)
 ```

3. Add the account URLs to your `urls.py` file
 ```python
from django.urls import path, include

urlpatterns = [
    path('', include("allauth_ui.urls")),
]
 ```
