Right now, the email, organization name, etc. are passed only in query parameters (e.g., /create-account?email=...). This is fragile: if the user refreshes, or the URL gets messed up, it's gone. It would be more robust to have a global state that survives across pages temporarily, even if the URL changes.
Right now, the email, organization name, etc. are passed only in query parameters (e.g., /create-account?email=...).
This is fragile: if the user refreshes, or the URL gets messed up, it's gone.
It would be more robust to have a global state that survives across pages temporarily, even if the URL changes.