autocomplete_creditcard_basic.html (1110B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Form Autofill Credit Card Demo Page</title> 6 </head> 7 <body> 8 <h1>Form Autofill Credit Card Demo Page</h1> 9 <form id="form"> 10 <p><label>Name: <input id="cc-name" autocomplete="cc-name"></label></p> 11 <p><label>Card Number: <input id="cc-number" autocomplete="cc-number"></label></p> 12 <p><label>Expiration month: <input id="cc-exp-month" autocomplete="cc-exp-month"></label></p> 13 <p><label>Expiration year: <input id="cc-exp-year" autocomplete="cc-exp-year"></label></p> 14 <p><label>CSC: <input id="cc-csc" autocomplete="cc-csc"></label></p> 15 <p><label>Card Type: <select id="cc-type" autocomplete="cc-type"> 16 <option></option> 17 <option value="discover">Discover</option> 18 <option value="jcb">JCB</option> 19 <option value="visa">Visa</option> 20 <option value="mastercard">MasterCard</option> 21 <option value="gringotts">Unknown card network</option> 22 </select></label></p> 23 <p> 24 <input type="submit" value="Submit"> 25 <button type="reset">Reset</button> 26 </p> 27 </form> 28 </body> 29 </html>