tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

autocomplete_creditcard_cc_exp_field.html (1004B)


      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 string: <input id="cc-exp" autocomplete="cc-exp"></label></p>
     13    <p><label>CSC: <input id="cc-csc" autocomplete="cc-csc"></label></p>
     14    <p><label>Card Type: <select id="cc-type" autocomplete="cc-type">
     15      <option></option>
     16      <option value="discover">Discover</option>
     17      <option value="jcb">JCB</option>
     18      <option value="visa">Visa</option>
     19      <option value="mastercard">MasterCard</option>
     20      <option value="gringotts">Unknown card network</option>
     21    </select></label></p>
     22    <p>
     23      <input type="submit" value="Submit">
     24      <button type="reset">Reset</button>
     25    </p>
     26  </form>
     27 </body>
     28 </html>