|
|
|
您的位置: 主页 > 客户中心 > 帮助信息 > 集团邮箱登陆代码 |
|
|
> 文档
很多使用根模式网站邮局的客户希望将电子邮箱的登陆界面整合到自己网站的某个网页中,以方便电子邮箱所有者的登陆使用,现我司将电子邮箱登陆的HTML代码整理如下,希望对这些朋友有所帮助。
您只需要将以下代码复制到需要放置电子邮箱的登陆界面的网页代码中即可。
注:必须将document.loginform.action的值修改为您邮局的真实URL,如“http://mail.您的域名/src/redirect.php”
点击查看电子邮箱登陆页面测试 |
|
<table border="0" align="center" cellpadding="5" cellspacing="0">
<SCRIPT LANGUAGE="JavaScript">
<!--
function changeIn()
{
// document.loginform.login_username.value = document.loginform.username.value + "dns110.com";
// document.loginform.action 必须修改为你邮局相对应的URL
document.loginform.login_username.value = document.loginform.username.value +'@'+document.loginform.domain.value;
document.loginform.secretkey.value = document.loginform.password.value;
document.loginform.js_autodetect_results.value = "SMPREF_JS_OFF";
document.loginform.just_logged_in.value = "1";
document.loginform.action = "http://mail.dns110.com/src/redirect.php";
document.loginform.submit();
}
//-->
</SCRIPT>
<form action="" name="loginform" method="post" onsubmit="return changeIn()">
<input type="hidden" name="js_autodetect_results" value="SMPREF_JS_OFF">
<input type="hidden" name="just_logged_in" value="1">
<input type="hidden" name="login_username">
<input type="hidden" name="secretkey">
<tr>
<td>用户名:</td>
<td><input maxlength=64 size=12 name=username value=""></td>
<td>@<input name=domain value="dns110.com" size=12 maxlength=64></td>
</tr>
<tr>
<td>密 码:</td>
<td><input maxlength=32 size=12 name="password" type="password" value=""></td>
<td><input name="submit" type=submit value="登录"></td>
</tr>
</form></table> |
|
点击查看电子邮箱登陆页面测试 |
|