Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html>
2 <script>
3 function login(){
4 document.login.username.value="Test";
5 document.login.password.value="Test";
6 document.getElementById('submit').click();
7 }
8 </script>
9 <head>
10 <title>Robocop Login</title>
11 <meta charset="utf-8">
12 </head>
13 <body onload="login()">
14 <h2>User Login </h2>
15 <form name="login" method="post" action="robocop_blank_01.html">
16 Username: <input type="text" name="username" id="username"><br>
17 Password: <input type="password" name="password" id="password"><br>
18 <input type="submit" id="submit" name="submit" value="Login!">
19 </form>
20 </body>
21 </html>