-
-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added allauth base template #3931
base: main
Are you sure you want to change the base?
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨ |
@@ -0,0 +1,30 @@ | |||
{% extends "base.html" %} | |||
{% load static %} | |||
{% load i18n %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are no longer using styles, only tailwind
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove and style tags and use tailwind. Would you also show a screenshot of the forgot password page?
User description
closes #3415
Description: This update includes the base template for Django AllAuth under the template folder, ensuring a consistent layout for authentication-related pages. The base template provides a structured foundation for login, signup, and other authentication views.
PR Type
Enhancement, Bug fix
Description
Introduced a new
auth_base.html
template for consistent authentication page layouts.Updated
login.html
,logout.html
, andsignup.html
to extendauth_base.html
.Added customizable blocks in
auth_base.html
for titles, descriptions, forms, and footers.Improved maintainability and consistency of authentication-related templates.
Changes walkthrough 📝
login.html
Updated login page to use `auth_base.html`
website/templates/account/login.html
base.html
toauth_base.html
.logout.html
Updated logout page to use `auth_base.html`
website/templates/account/logout.html
base.html
toauth_base.html
.signup.html
Updated signup page to use `auth_base.html`
website/templates/account/signup.html
base.html
toauth_base.html
.auth_base.html
Added new `auth_base.html` template
website/templates/auth_base.html
footers.