This code is totally safe, you can see it later where you nid to put in your username and password for this forum.
Javascript need to be enabled in your browser.
Edit the html file with notepad:
Change <yourusername> to your forum username
Change <yourpassword> to your forum password
save it at your desktop =)
How does this benefit me?
For people who does not save cookie/login detail, just double click the html file and you are logged in =)
For IE user, you need to Allow Blocked Content, as i said this script is save, you can see yourself.
For FF user, you do not need to do anything =)
Please help me try on other browser to see if its working.
Download Link:
Code: Select all
http://www.mediafire.com/download.php?nznvd0djmy1
Code: Select all
<html>
<form method="post" action="http://xemectrum.co.cc/ucp.php?mode=login" class="headerspace">
<fieldset class="quick-login">
<label for="username">Username:</label> <input type="text" name="username" id="username" size="10" class="inputbox" title="Username" />
<label for="password">Password:</label> <input type="password" name="password" id="password" size="10" class="inputbox" title="Password" />
<input type="submit" name="login" value="Login" class="button2" id="button" />
</fieldset>
</form>
<script>
//wrote by wizme =) for http://xemectrum.co.cc
document.getElementById('username').value="<yourusername>";
document.getElementById('password').value="<yourpassword>";
document.getElementById('button').click();
</script>
</body>
</html>