EditSafeInfo.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  13. <tr>
  14. <td width="50%" height="30" bgcolor="#FFFFFF">&nbsp;</td>
  15. <td width="50%" bgcolor="#FFFFFF"><div align="right">[<a href="../EditInfo/">修改基本资料</a>]&nbsp;&nbsp;</div></td>
  16. </tr>
  17. </table>
  18. <br>
  19. <table width='100%' border='0' align='center' cellpadding='3' cellspacing='1' class="tableborder">
  20. <form name=userinfoform method=post enctype="multipart/form-data" action=../doaction.php>
  21. <input type=hidden name=enews value=EditSafeInfo>
  22. <tr class="header">
  23. <td height="25" colspan="2">密码安全修改</td>
  24. </tr>
  25. <tr>
  26. <td width='21%' height="25" bgcolor="#FFFFFF"> <div align='left'>用户名 </div></td>
  27. <td width='79%' height="25" bgcolor="#FFFFFF">
  28. <?=$user[username]?>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td height="25" bgcolor="#FFFFFF"> <div align='left'>原密码</div></td>
  33. <td height="25" bgcolor="#FFFFFF"> <input name='oldpassword' type='password' id='oldpassword' size="38" maxlength='20'>
  34. (修改密码或邮箱时需要密码验证)</td>
  35. </tr>
  36. <tr>
  37. <td height="25" bgcolor="#FFFFFF"> <div align='left'>新密码</div></td>
  38. <td height="25" bgcolor="#FFFFFF"> <input name='password' type='password' id='password' size="38" maxlength='20'>
  39. (不想修改请留空)</td>
  40. </tr>
  41. <tr>
  42. <td height="25" bgcolor="#FFFFFF"> <div align='left'>确认新密码</div></td>
  43. <td height="25" bgcolor="#FFFFFF"> <input name='repassword' type='password' id='repassword' size="38" maxlength='20'>
  44. (不想修改请留空)</td>
  45. </tr>
  46. <tr>
  47. <td height="25" bgcolor="#FFFFFF"> <div align='left'>邮箱</div></td>
  48. <td height="25" bgcolor="#FFFFFF"> <input name='email' type='text' id='email' value='<?=$user[email]?>' size="38" maxlength='50'>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  53. <td height="25" bgcolor="#FFFFFF"> <input type='submit' name='Submit' value='修改信息'>
  54. </td>
  55. </tr>
  56. </form>
  57. </table>
  58. <?php
  59. require(ECMS_PATH.'e/template/incfile/footer.php');
  60. ?>