Hi I need some help to make a little code: i have 2 page: page A and page B. In the page A there is an input text and a button
Example:
Code:
<form><input type="text" id="email"><input type="submit" value="Continue"></form>
I need that when you press Continue what you text in the input #email appears in the input text of the page B
Example:
Code:
<form><input type="text" id="email"><input type="submit" value="Register">
FOR EXAMPLE:
I'm in the page A i write my email on the input text one (#email) I click continue and i get redirected to page B where the input text two (#email) is autofilled with my email (that i write on page A)
I hope I made myself clear.