Django Allauth templates with basic DaisyUI styling. You can find a list of available allauth templates here.
- Copy the contents of the templates directory into your templates folder.
- If not done already, register the templates in your settings.py, e.g., with:
TEMPLATES = [ { "DIRS": [ str(APPS_DIR / "templates"), ], "APP_DIRS": True, ... }, ]
- Make sure to adjust the entry template
base.html
intemplates/allauth/layouts/entrance.html
andtemplates/allauth/layouts/manage.html
This project uses pre-commit
. Make sure to have it installed, e.g., in your python environment, to pass all checks.