Skip to content

Commit

Permalink
docs: add installation
Browse files Browse the repository at this point in the history
  • Loading branch information
jxhnx committed Oct 26, 2024
1 parent 56936bf commit 1d0446a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Django Allauth templates for DaisyUI

Django Allauth templates with basic DaisyUI styling. You can find a list of available allauth templates [here](https://docs.allauth.org/en/dev/common/templates.html).

## Installation

1. Copy the contents of the templates directory into your templates folder.
2. If not done already, register the templates in your settings.py, e.g., with:
```
TEMPLATES = [
{
"DIRS": [
str(APPS_DIR / "templates"),
],
"APP_DIRS": True,
...
},
]
```
3. Make sure to adjust the entry template `base.html` in `templates/allauth/layouts/entrance.html` and `templates/allauth/layouts/manage.html`

0 comments on commit 1d0446a

Please sign in to comment.