Please when you create a form and then press the login button how am I to produce a new page | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please when you create a form and then press the login button how am I to produce a new page

form

4th Aug 2017, 5:08 PM
Kelvin O.S
Kelvin O.S - avatar
2 Answers
0
You should use a function. Check out this as an example of how to use forms/submit buttons/new pages https://code.sololearn.com/W0Pb6DeD12bJ/?ref=app
4th Aug 2017, 5:53 PM
Maart
Maart - avatar
0
<form action="second.html" method="get">   First name: <input type="text" name="fname"><br>   Last name: <input type="text" name="lname"><br>   <input type="submit" value="Submit"> </form> here when you click on submit button, it will take you to the page second.html...
4th Aug 2017, 6:39 PM
Mohit Mehta
Mohit Mehta - avatar