madewithwagtail
madewithwagtail copied to clipboard
FED required for new auth pages
MWW'll use Django allauth for user account related tasks (sign up, sign in, password change, login by google, etc.) Allauth package has multiple pages needing FEDs review and styling.
- http://localhost:8111/accounts/confirm-email/
- http://localhost:8111/accounts/confirm-email/
/ - http://localhost:8111/accounts/email/
- http://localhost:8111/accounts/google/login/
- http://localhost:8111/accounts/google/login/callback/
- http://localhost:8111/accounts/inactive/
- http://localhost:8111/accounts/login/
- http://localhost:8111/accounts/logout/
- http://localhost:8111/accounts/password/change/
- http://localhost:8111/accounts/password/reset/
- http://localhost:8111/accounts/password/reset/done/
- http://localhost:8111/accounts/password/reset/key/
- / - http://localhost:8111/accounts/password/reset/key/done/
- http://localhost:8111/accounts/password/set/
- http://localhost:8111/accounts/signup/
- http://localhost:8111/accounts/social/connections/
- http://localhost:8111/accounts/social/login/cancelled/
- http://localhost:8111/accounts/social/login/error/
- http://localhost:8111/accounts/social/signup/
Related django templates are in core/templates/account/*
folder.
Work done in branch feature/django-allauth-integration
Run pip install -r requirements/dev.txt
and ./manage.py migrate
before you start working on the branch.
@tacitus Is there a design that we'll be implementing?
There isn't no.
I guess it will be a matter of making it look decent enough with the existing styles. Since it will mostly be forms, it could very much be based of the same style as the submit page.
@holloway @tacitus styling done on: https://github.com/springload/madewithwagtail/commit/9b493f9b8c99532b2a1cd766af46a438c9fdf459
Only thing left are: https://github.com/springload/madewithwagtail/blob/feature/django-allauth-integration/docs/allauth-social-accounts.md#configuration-in-google-developer-console
@holloway @tacitus styling is done, I've just added Google Sign in button and alert messages styling yesterday.