0
Please when you create a form and then press the login button how am I to produce a new page
form
2 Réponses
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
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...