
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
django-auth-style provides Django template styling for django-allauth and django-oauth-toolkit.
To enable support for django-allauth, install with:
pip install django-auth-style[allauth]
Then enable the Django app:
# settings.py
INSTALLED_APPS = [
# Any project-local apps should come before "auth_style",
# so templates can be overridden as needed
'my_django_app.apps.MyDjangoAppConfig',
...,
'auth_style',
...,
# "allauth" must come after "auth_style"
'allauth',
'allauth.account',
'allauth.socialaccount',
]
MIDDLEWARE = [
...,
# CurrentSiteMiddleware is optional, but recommended to show site branding
'django.contrib.sites.middleware.CurrentSiteMiddleware',
...
]
To enable support for django-oauth-toolkit, install with:
pip install django-auth-style[oauth-toolkit]
Then enable the Django app:
# settings.py
INSTALLED_APPS = [
# Any project-local apps should come before "auth_style",
# so templates can be overridden as needed
'my_django_app.apps.MyDjangoAppConfig',
...,
'auth_style',
...,
# "oauth2_provider" must come after "auth_style"
'oauth2_provider',
]
When django-auth-style is properly installed alongside django-allauth or django-oauth-toolkit, rendered templates will automatically be overridden with styled alternatives.
To customize the site name (in the upper-left corner), create auth_style/site_name.html
within your project's templates directory. You will be responsible for applying appropriate styling to any text.
For example:
<span style="font-size: 1.5rem; font-weight: bold; color: #2563eb;">
🚀 My Custom App
</span>
FAQs
Django template styling for django-allauth and django-oauth-toolkit.
We found that django-auth-style demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.