add required GDPR consent checkbox to agent registration form#763
Merged
need4deed merged 7 commits intoJul 13, 2026
Conversation
Contributor
|
Looks good, we missed on one link to add there the guidlines https://www.need4deed.org/rac-guidelines @ivannissimrch can you add it to the pr? between the two other links |
Collaborator
Author
|
Link for guidelines added. |
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.
Description
Adds a required consent checkbox to the last step of the agent/NGO registration form (
AccountStep.tsx), with links to the Data Privacy and Agreement pagesCloses #748
Changes
consenttoAgentRegistrationDatawith a defaultfalseScreenshots / Demos
Screencast.from.2026-07-04.09-08-34.mp4
Notes on link routing
The Data Privacy / Agreement links use
/${Subpage.DATA_PRIVACY}//${Subpage.AGREEMENT}without a lang prefix, since the middleware already injects the locale. Alternative: I could read the locale with
useParamsand prefix it explicitly,<a href={/${lang}/${Subpage.DATA_PRIVACY}}>…</a>Both work, but I went with the no-prefix to keep it simple.
Checklist