I have an html page where the user types the email and I carry out the verification. If that email is not in the database, you are a new user and therefore redirect to the registration page.
On the registration page I want the email field to come already with the email typed on the previous page. How do I?
page 1
<label id=id_email name="email"> </label>
page 2
<label id=id_email name="email"> </label>
$( document ).ready(function() {
$("#id_email").val("[email protected]");
});