GetPassword.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']='取回密码';
  9. $url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../cp/>会员中心</a>&nbsp;>&nbsp;取回密码";
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <br>
  13. <table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  14. <form name="GetPassForm" method="POST" action="../doaction.php">
  15. <tr class="header">
  16. <td height="25" colspan="2"><div align="center">取回密码</div></td>
  17. </tr>
  18. <tr bgcolor="#FFFFFF">
  19. <td width="23%" height="25">用户名</td>
  20. <td width="77%"><input name="username" type="text" id="username" size="38"></td>
  21. </tr>
  22. <tr bgcolor="#FFFFFF">
  23. <td height="25">邮箱</td>
  24. <td><input name="email" type="text" id="email" size="38"></td>
  25. </tr>
  26. <tr bgcolor="#FFFFFF">
  27. <td height="25">验证码</td>
  28. <td>
  29. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  30. <tr>
  31. <td width="52"><input name="key" type="text" id="key" size="6">
  32. </td>
  33. <td id="getpasswordshowkey"><a href="#EmpireCMS" onclick="edoshowkey('getpasswordshowkey','getpassword','<?=$public_r['newsurl']?>');" title="点击显示验证码">点击显示验证码</a></td>
  34. </tr>
  35. </table>
  36. </td>
  37. </tr>
  38. <tr bgcolor="#FFFFFF">
  39. <td height="25">&nbsp; </td>
  40. <td> <input type="submit" name="button" value="提交"> <input name="enews" type="hidden" id="enews" value="SendPassword"></td>
  41. </tr>
  42. </form>
  43. </table>
  44. <br>
  45. <?php
  46. require(ECMS_PATH.'e/template/incfile/footer.php');
  47. ?>