tor-browser

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

autocomplete_simple_basic.html (549B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>Form Autofill Demo Page for Simplified Form Case</title>
      6 </head>
      7 <body>
      8  <h1>Form Autofill Demo Page for Simplified Form Case</h1>
      9 
     10  <form id="simple">
     11    <p><label>Organization: <input type="text" /></label></p>
     12    <p><label>Telephone: <input id="simple_tel" name="tel" /></label></p>
     13    <p><label>Email: <input type="text" id="simple_email" name="email" /></label></p>
     14    <p><input type="submit" /></p>
     15    <p><button type="reset">Reset</button></p>
     16  </form>
     17 
     18 </body>
     19 </html>