tor-browser

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

password.html (590B)


      1 <html>
      2  <head>
      3    <meta name="viewport" content="width=device-width" />
      4  </head>
      5 
      6  <body aria-label="body">
      7    <form method="GET" action="passwordsubmit.html">
      8      <p>
      9        Username: <input id="username" type="text" value="test@example.com" />
     10      </p>
     11      <p>
     12        Password: <input id="password" type="password" value="verysecret" />
     13      </p>
     14      <p>
     15        <input type="submit" id="submit" value="Login" aria-label="submit" />
     16      </p>
     17    </form>
     18  </body>
     19 
     20  <script>
     21    document.getElementById("password").value = Math.random().toString();
     22  </script>
     23 </html>