Discuz!NT官方社区

首页 » Discuz!NT开发与测试 » Discuz!NT整合 » html页面登录论谈
userid - 2008-6-16 13:16:00
:-| 小弟我这是一个简单的登录文件(.html).可以给痛苦寻找的同志们一点光明.
<html>
<head>
<title>登录</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="http://websiteurl/login.aspx?agree=yes" target="_self"><table width="100%" border="0" cellspacing="0" cellpadding="5">
      <tr>
        <td width="60"> </td>
        <td>username:<input name="password" type="text" id="password" size="12" maxlength="20"></td>
      </tr>
      <tr>
        <td> </td>
        <td height="32">password:<input name="username" type="password" id="username" size="12" maxlength="20"></td>
      </tr>
      <tr><td><label>
          <input type="submit" name="Submit" value="提交" />
          </label>
      </td>
      </tr>
    </table>
</form>

</body>
</html>
以上代码可直接复制到本地,放在.html文件里可使用.其中form的action中的websiteurl中你论谈的访问网址.
1
查看完整版本: html页面登录论谈