1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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="GetPassForm" method="POST" action="../doaction.php">
- <tr class="header">
- <td height="25" colspan="2"><div align="center">取回密码</div></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td width="23%" height="25">用户名</td>
- <td width="77%"><input name="username" type="text" id="username" size="38"></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25">邮箱</td>
- <td><input name="email" type="text" id="email" size="38"></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25">验证码</td>
- <td>
- <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="getpasswordshowkey"><a href="#EmpireCMS" onclick="edoshowkey('getpasswordshowkey','getpassword','<?=$public_r['newsurl']?>');" title="点击显示验证码">点击显示验证码</a></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25"> </td>
- <td> <input type="submit" name="button" value="提交"> <input name="enews" type="hidden" id="enews" value="SendPassword"></td>
- </tr>
- </form>
- </table>
- <br>
- <?php
- require(ECMS_PATH.'e/template/incfile/footer.php');
- ?>
|