submitting the form doesn't take the email vaue, s...
# support-questions-legacy
n
submitting the form doesn't take the email vaue, setted like follow : " document.querySelector('[name="email"]').value =parameters.get('pec')" is there any method to do that?
r
hey @nox
yea, checkout the react override section in our docs
You can essentially override the sign up form and create a useEffect in there which reads the email from the URL and inserts it into the sign up form using a query selector
n
i already do this
r
Oh right. I had misread your question
Perhaps @porcellus can help here.
p
Right, so the reason behind this is that you only update the value in the dom, but react doesn't know about it.
I'll get back to you with a solution in a bit
n
😘
p