tor-browser

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

forms_autocomplete.html (463B)


      1 <html>
      2  <head>
      3    <meta charset="utf-8" />
      4    <title>Forms</title>
      5    <meta name="viewport" content="minimum-scale=1,width=device-width" />
      6  </head>
      7  <body>
      8    <form>
      9      <input type="text" autocomplete="email" autofocus />
     10      <input type="text" autocomplete="username" />
     11      <input type="password" />
     12      <input type="submit" value="submit" />
     13    </form>
     14    <iframe id="iframe" src="forms_autocomplete_iframe.html"></iframe>
     15  </body>
     16 </html>