OLD | NEW |
1 <html> | 1 <html> |
| 2 <head> |
| 3 <style> |
| 4 /* The submit button's position and size is fixed, so that it's easy to specify |
| 5 * tap/click coordinates for it. */ |
| 6 #input_submit_button { |
| 7 top: 100px; |
| 8 left: 0px; |
| 9 position: absolute; |
| 10 height: 300px; |
| 11 width: 700px; |
| 12 } |
| 13 </style> |
| 14 </head> |
2 <body> | 15 <body> |
3 <form method="POST" action="done.html" id="testform"> | 16 <!-- Use GET, so that the password is visible in the URL after submitting. --> |
| 17 <form method="GET" action="done.html" id="testform"> |
4 <input type="text" id="username_field" name="username_field"> | 18 <input type="text" id="username_field" name="username_field"> |
5 <input type="password" id="password_field" name="password_field"> | 19 <input type="password" id="password_field" name="password_field"> |
6 <input type="submit" id="input_submit_button" name="input_submit_button"> | 20 <input type="submit" id="input_submit_button"> |
7 </form> | 21 </form> |
8 <a href="done.html" id="testlink" target="_blank">Link</a> | 22 <a href="done.html" id="testlink" target="_blank">Link</a> |
9 </body> | 23 </body> |
10 </html> | 24 </html> |
OLD | NEW |