| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- if(!defined('InEmpireCMS'))
- {
- exit();
- }
- ?>
- <?php
- $public_diyr['pagetitle']='会员登录';
- $url="<a href=../../../>首页</a> > <a href=../cp/>会员中心</a> > 会员登录";
- require(ECMS_PATH.'e/template/incfile/header.php');
- ?>
- <br>
- <table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
- <form name="form1" method="post" action="../doaction.php">
- <input type=hidden name=ecmsfrom value="<?=ehtmlspecialchars($_GET['from'])?>">
- <input type=hidden name=enews value=login>
- <input name="tobind" type="hidden" id="tobind" value="<?=$tobind?>">
- <tr class="header">
- <td height="25" colspan="2"><div align="center">会员登录<?=$tobind?' (绑定账号)':''?></div></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td width="23%" height="25">用户名:</td>
- <td width="77%" height="25"><input name="username" type="text" id="username" size="30">
- <?php
- if($public_r['regacttype']==1)
- {
- ?>
- <a href="../register/regsend.php" target="_blank">帐号未激活?</a>
- <?php
- }
- ?>
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25">密码:</td>
- <td height="25"><input name="password" type="password" id="password" size="30">
- <a href="../GetPassword/" target="_blank">忘记密码?</a></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25">保存时间:</td>
- <td height="25">
- <input name=lifetime type=radio value=0 checked>
- 不保存
- <input type=radio name=lifetime value=3600>
- 一小时
- <input type=radio name=lifetime value=86400>
- 一天
- <input type=radio name=lifetime value=2592000>
- 一个月
- <input type=radio name=lifetime value=315360000>
- 永久 </td>
- </tr>
- <?php
- if($public_r['loginkey_ok'])
- {
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25">验证码:</td>
- <td height="25">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="52"><input name="key" type="text" id="key" size="6">
- </td>
- <td id="loginshowkey"><a href="#EmpireCMS" onclick="edoshowkey('loginshowkey','login','<?=$public_r['newsurl']?>');" title="点击显示验证码">点击显示验证码</a></td>
- </tr>
- </table>
- </td>
- </tr>
- <?php
- }
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="25"> </td>
- <td height="25"><input type="submit" name="Submit" value=" 登 录 "> <input type="button" name="button" value="马上注册" onclick="parent.location.href='../register/<?=$tobind?'?tobind=1':''?>';"></td>
- </tr>
- </form>
- </table>
- <br>
- <?php
- require(ECMS_PATH.'e/template/incfile/footer.php');
- ?>
|