1
i have an html page where the user type in the email and I perform the check. If that email is not in the database, it is 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]");
});
Send by session or querystring.
– Diego Souza
The idea is to send by session anyway, but I don’t know how to do, I’m learning
– Bianca C.
What language are you using?
– Diego Souza
Python using Django
– Bianca C.
I don’t even know a Python line. Sorry!
– Diego Souza