Replies: 1 comment 1 reply
-
If you signup with a social account, there is no password, meaning, you cannot have a password change view asking you to enter your old password and the new one. Hence, the need for a separate I suggest you take a look at the example project -- it uses the styling mechanism to add Bootstrap styles to the builtin templates without rewriting them, resulting in e.g.: The same approach could be taken to add Tailwind styles... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just started using Django with allauth recently and I'm currently in the process of rewriting the templates so I can style them with Tailwind CSS. During this process I noticed that there are separate views for email and password management. However, I'd like to combine these into a single
AccountSettings
view. So my questions is, what would be the correct way of going about combining theEmailView
andPasswordSetView
/PasswordChangeView
(not sure what the difference between these last two views is yet) into such anAccountSettings
view? I've tried asking Copilot, but the solution it gave me seems off/wrong/incomplete (?):Any suggestions? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions