OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Autofill Form</title> | 4 <title>Autofill Form</title> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <form id="testform" method="post"> | 7 <form id="testform" method="post"> |
8 <!-- Profile --> | 8 <!-- Profile --> |
9 <label for="NAME_FIRST">First Name:</label> | 9 <label for="NAME_FIRST">First Name:</label> |
10 <input type="text" id="NAME_FIRST" name="firstname"><br/> | 10 <input type="text" id="NAME_FIRST" name="firstname"><br/> |
(...skipping 18 matching lines...) Expand all Loading... |
29 <input type="text" id="ADDRESS_HOME_ZIP" name="zipcode"><br/> | 29 <input type="text" id="ADDRESS_HOME_ZIP" name="zipcode"><br/> |
30 | 30 |
31 <label for="ADDRESS_HOME_COUNTRY">Country:</label> | 31 <label for="ADDRESS_HOME_COUNTRY">Country:</label> |
32 <input type="text" id="ADDRESS_HOME_COUNTRY" name="country"><br/> | 32 <input type="text" id="ADDRESS_HOME_COUNTRY" name="country"><br/> |
33 <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label> | 33 <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label> |
34 <input type="text" id="PHONE_HOME_WHOLE_NUMBER" name="phone"><br/> | 34 <input type="text" id="PHONE_HOME_WHOLE_NUMBER" name="phone"><br/> |
35 <input type="submit" value="send"> <input type="reset"> | 35 <input type="submit" value="send"> <input type="reset"> |
36 </form> | 36 </form> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |