cc_form.html (711B)
1 <html> 2 <head> 3 <meta charset="utf-8" /> 4 <title>Form Autofill Test: Credit Card</title> 5 </head> 6 <body> 7 <form id="form1"> 8 <input autocomplete="cc-name" id="name" /> 9 <input autocomplete="cc-number" id="number" /> 10 <input autocomplete="cc-exp-month" id="expMonth" /> 11 <input autocomplete="cc-exp-year" id="expYear" /> 12 <input type="submit" value="Submit" /> 13 </form> 14 <!-- form2 uses a single expiration date field --> 15 <form id="form2"> 16 <input autocomplete="cc-name" id="name" /> 17 <input autocomplete="cc-number" id="number" /> 18 <input autocomplete="cc-exp" id="exp" /> 19 <input type="submit" value="Submit" /> 20 </form> 21 </body> 22 </html>