常见问题
您当前的位置:帮助中心 > 常见问题 > 老板邮局 > 常见问题

如何将老板邮局登陆口嵌入自制网页中

点击数:4903 更新时间:2014-05-30

      

邮局系统单点登录说明手册下载


注:以下为登录嵌入HTML DEMO请注意红色部分请替换为您于我司的邮局域名。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>登录页面</title>
</head>
<body onload="javascript :document.form1.login_username.focus();">
<div id="contain">   
<div id="wrap">
<div>
<h2><span>登录页面:</span></h2>  
<form name="form1" method=post >
<div>
<label>用户名:</label>
<input  name="login_username" maxlength="20" type="text" size="19"   onFocus="this.select()" dataType="Require" msg="请输入登录帐号" />
</div>
<div>
<label>密 码:</label>
<input  name="secretkey"  maxlength="25" type="password" size="19"   onFocus="this.select()" datatype="Require" msg="请输入登录密码"/>
</div>
<div>
<button type="submit" onclick="form.action='http://mail.test.com/webmail/post/redirect.php?send=API'">管理员登录</button>
<button type="submit" onclick="form.action='http://mail.test.com/webmail/src/redirect.php?send=API'">邮箱登录</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>