I have made a page for my staff to log into their mails without the need to go to http://www.ipage.com/mail/. The page is http://www.pgla-jordan.org/staff-login.html.
here is the code for that page:
<form METHOD="POST" NAME="login" ENCTYPE="application/x-www-form-urlencoded">
<TR>
<TD>E-mail Address:</TD>
<TD>
<INPUT TYPE="text" NAME="credential_0" value="" SIZE="20" MAXLENGTH="128" class="formfield">
</TD>
</TR>
<TR>
<TD>Password:</TD>
<TD>
<INPUT TYPE="password" NAME="credential_1" SIZE="20" MAXLENGTH="50" class="formfield">
</TD>
</TR>
<TR><TD>
<INPUT TYPE="submit" NAME="Log In" VALUE="Check Mail" onclick="javascript:login.action='https://secure.ipage.com/mailLogin';javascript:login.destination.value = '/mailadmin/index.bml?check=1';" >
</TD><TD>
<INPUT TYPE="submit" NAME="Log In" VALUE="Manage Mail" onclick="javascript:login.action='https://secure.ipage.com/mailLogin';javascript:login.destination.value = '/mailadmin/index.bml?manage=1';">
</TD></TR>
<INPUT TYPE="hidden" NAME="destination">
</form>
</TABLE>
</center>
I want to let the users just enter the first part of their emails (the XXXX part in XXXX@domain.com) and the password to log them into their mails.
Do some javascript…..
hope this will work. you may have to do some fine tunes if it don’t work. but logic should work for you.