Webmail Login Form

host4leicester

Verified User
Joined
Jun 23, 2003
Messages
25
Is it possible to have a form on my site so people can login with there email address and password and be taken to there webmail?
 
PM me with a link and a demo login and i will try get something done :)

Chris
 
Just in case anyone searches for this like I did here is a simple form that works with roundcube, maybe others could try with others and post here the results.

<table border="0" cellpadding="0" cellspacing="4">
<tr>
<td><div align="center" class="style4">Username</div></td>
</tr>
<tr>
<td><div align="center">
<input name="_user" id="rcmloginuser" type="text" value="" onFocus="style.backgroundColor='#C7E9FC'" onBlur="style.backgroundColor='white'">
</div></td>
</tr>
<tr>
<td><div align="center" class="style4">Password</div></td>
</tr>
<tr>
<td><div align="center">
<input name="_pass" id="rcmloginpass" type="password" class="client-textfield" value="" onFocus="style.backgroundColor='#C7E9FC'" onBlur="style.backgroundColor='white'">
</div></td>
</tr>
<tr>
<td><div align="center">
<input name="_action" value="login" type="hidden" />
<input name="submit" type="image" id="submit" value="submit" src="http://yourdomain.com/images/login_butt.gif" alt="Login" align="middle">
</div></td>
</tr>
</table>
 
Back
Top