hi, is there any method to precompile email in sig...
# support-questions-legacy
n
hi, is there any method to precompile email in sign up page with url parameters in react?
r
hey! I don't understand this question. Could you elaborate?
n
i want to autocompile email in sign up page when the URL is like /auth?email=john@gmail.com
is there any recipe for this
??
r
oh you mean add that in the email field based on the query param?
You can do this by overriding the react component for that form and in a
useEffect
in that, read from the query param and add it to the email field via JS
2 Views