[auth] account registration form and email activation#493
Open
amahuli03 wants to merge 9 commits intoCodeForPhilly:developfrom
Open
[auth] account registration form and email activation#493amahuli03 wants to merge 9 commits intoCodeForPhilly:developfrom
amahuli03 wants to merge 9 commits intoCodeForPhilly:developfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
Closes #485
Related to #483
Blocked by #484, which needs to be reviewed and merged before this
Description
Builds the full registration-to-activation flow so users can create accounts and verify their email before logging in. The backend infrastructure (Djoser endpoints, email config) was already in place. This PR completes the frontend and connects the pieces together.
Changes:
DEBUG=False) the existing Gmail SMTP config is used.auth.tsxthat was used as a starting point and updated to use the current endpoint patterns and error handling./activate/:uid/:token. Calls Djoser's activation endpoint on mount, shows a success state with "Continue to log in" or an error state for invalid/expired/already-used links.DOMAINandSITE_NAMEadded to settings so Djoser generates activation links pointing to the frontend (localhost:3000 in dev) rather than the internal Docker backend hostname.Manual Tests
Testing:
Reviewers
@sahilds1 @taichan03
Notes
TODO: add
FRONTEND_DOMAIN=balancerproject.orgto prod config so activation and password reset email links point to the correct domain.