| OLD | NEW |
| 1 <!-- |
| 2 A mock signup form. Essentially the same as password_form.html, but includes |
| 3 an additional text field which will cause it to be treated differently. |
| 4 --> |
| 1 <html> | 5 <html> |
| 2 <body> | 6 <body> |
| 3 <form action="done.html" onsubmit="return true;" id="testform"> | 7 <form method="POST" action="done.html" onsubmit="return true;" id="testform"> |
| 8 <input type="text" id="other_info" name="other_info"> |
| 4 <input type="text" id="username_field" name="username_field"> | 9 <input type="text" id="username_field" name="username_field"> |
| 5 <input type="password" id="password_field" name="password_field"> | 10 <input type="password" id="password_field" name="password_field"> |
| 6 <input type="submit" id="input_submit_button" name="input_submit_button"> | 11 <input type="submit" id="input_submit_button" name="input_submit_button"> |
| 7 </form> | 12 </form> |
| 8 | 13 |
| 9 <button id="submit_button" name="submit_button" | 14 <button id="submit_button" name="submit_button" |
| 10 onclick="document.getElementById('testform').submit()"> | 15 onclick="document.getElementById('testform').submit()"> |
| 11 Submit! | 16 Submit! |
| 12 </button> | 17 </button> |
| 13 | 18 |
| 14 </body> | 19 </body> |
| 15 </html> | 20 </html> |
| OLD | NEW |