Your form needs a destination. Just schedule an action. For example, create a file called "test.html", and then:
<body> <form action="test.html" name="formlogin" id="formlogin"> Username: <input type="text" name="username" id="username" /> Password: <input type="password" name="password" id="password"/> <input type="submit" name="Submit" value="Submit" /> </form> </body>
source share