OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
2 <html> | |
3 <head> | |
4 <title>AutoFill Form</title> | |
5 </head> | |
6 <body> | |
7 <form id="merge_dup" method="post"> | |
8 <p> | |
Ilya Sherman
2011/03/18 23:17:11
nit: The <p> element does not make sense here; ple
dyu1
2011/03/21 18:42:35
Done.
| |
9 <!-- Profile --> | |
10 <label for="NAME_FIRST">First Name:</label> | |
11 <input type="text" id="NAME_FIRST" name="firstname"><br/> | |
12 <label for="NAME_MIDDLE">Middle Name:</label> | |
13 <input type="text" id="NAME_MIDDLE" name="middlename"><br/> | |
14 <label for="NAME_LAST">Last Name:</label> | |
15 <input type="text" id="NAME_LAST" name="lastname"><br/> | |
16 <label for="EMAIL_ADDRESS">Email:</label> | |
17 <input type="text" id="EMAIL_ADDRESS" name="email"><br/> | |
18 <label for="COMPANY_NAME">Company:</label> | |
19 <input type="text" id="COMPANY_NAME" name="company"><br/> | |
20 | |
21 <label for="ADDRESS_HOME_LINE1">Address:</label> | |
22 <input type="text" id="ADDRESS_HOME_LINE1" name="address"><br/> | |
23 <label for="ADDRESS_HOME_LINE2">Address 2:</label> | |
24 <input type="text" id="ADDRESS_HOME_LINE2" name="address2"><br/> | |
25 <label for="ADDRESS_HOME_CITY">City:</label> | |
26 <input type="text" id="ADDRESS_HOME_CITY" name="city"><br/> | |
27 <label for="ADDRESS_HOME_STATE">State:</label> | |
28 <input type="text" id="ADDRESS_HOME_STATE" name="state"><br/> | |
29 <label for="ADDRESS_HOME_ZIP">Zip:</label> | |
30 <input type="text" id="ADDRESS_HOME_ZIP" name="zipcode"><br/> | |
31 | |
32 <label for="ADDRESS_HOME_COUNTRY">Country:</label> | |
33 <input type="text" id="ADDRESS_HOME_COUNTRY" name="country"><br/> | |
34 <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label> | |
35 <input type="text" id="PHONE_HOME_WHOLE_NUMBER" name="phone"><br/> | |
36 <label for="PHONE_FAX_WHOLE_NUMBER">Fax:</label> | |
37 <input type="text" id="PHONE_FAX_WHOLE_NUMBER" name="fax"><br/> | |
38 <input type="submit" value="send"> <input type="reset"> | |
39 </p> | |
40 </form> | |
41 </body> | |
42 </html> | |
OLD | NEW |