Creating a PLESK login on my site...
I have found code on this and entered it onto my page... however, when a username and password is typed in, and then LOGIN is pressed, it just takes you to to plesk login page, where you have to login a SECOND time, THEN you can actually get into your control panel... this is the code I am using...
<form action="http://65.98.110.82:8443/login.php3" method="post">
<table border="0" align="center" cellpadding="1" cellspacing="0">
<!--Username-->
<tr><td><font face="Verdana,Arial,Helvetica" size="1"><label for="login_name"> Login:</label></font></td>
<td><input type="text" name="login_name" id="login_name" class="login_textbox" value="" size="15" tabindex="1"></td></tr>
<!--Password-->
<tr><td><font face="Verdana,Arial,Helvetica" size="1"><label for="passwd">Password:</label></font></td>
<td><input type="password" name="passwd" id="passwd" size="15" maxlength="14" tabindex="2"></td></tr>
<tr><td> </td>
<td align="center"><input name="rememberme" type="checkbox" id="rememberme" value="1">
<font face="Verdana,Arial,Helvetica" size="1">Remember Me</font></td></tr>
<tr><td> </td>
<td align="center"><input type="submit" name="submit" value="Login"></td></tr>
</table></form>
Thanks!
|