OK, sorry if this is on here somewhere else and I can't find it but....
I'm trying to make a page (for on my site) to log into Squirl mail web interface. I want to automaticaly add the +YourDomanName.com for the users and then take them into the squirl mail interface.
Now that is the ultimate plan, right now I would be happy with just haveing a 'web page' where they could log in from (my parents don't now what to do when the authintication window launches, so they kill it no matter what I tell them!!). I have the following code I swiped from the FAQ's (http://www.totalchoicehosting.com/help/id98.htm), but it's not working like it should. It dosen't open the squirl web interface, it gives me a 'Page can't be found'. Is there a step missing??.....HELP!!!!!! What am I being brain dead and not seeing?
Thanks!
<HTML>
<head>
<script language="JavaScript" type="text/javascript">
<!--
function squirrelmail_loginpage_onload() {
document.forms[0].js_autodetect_results.value = '1';
}
// -->
</script>
</head>
<BODY>
<form method="post" action="http://charles-mckinley.com/mail/src/redirect.php">
<input type="hidden" name="js_autodetect_results" value="0">
User: <input type="text" name="login_username" size="10">
Password: <input type="password" name="secretkey" size="10">
<input type="submit" value="Login">
</form>
</BODY>
</HTML>