Enhance your Django admin login page.
Based on an idea by @alexgmin
Like what we're doing? Please consider making a donation, it really helps.
- Install the package:
pip install django_wplogin
- Add the application to your
INSTALLED_APPS
. Make sure it's beforedjango.contrib.admin
:
INSTALLED_APPS = [
...
"django_wplogin",
"django.contrib.admin",
...
]
- That's it. Your login page is now enhanced.