国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.4KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  7. <title>找回密码第二步-<?php echo $cfg_webname;?></title>
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
  11. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  12. </head>
  13. <body class="body-bg">
  14. <?php obtaintheme('top.htm');?>
  15. <main class="container py-3">
  16. <div class="row">
  17. <div class="col-md-12">
  18. <h2>找回密码第二步</h2>
  19. <p><a href="index_do.php?fmdo=user&dopost=regnew">还没注册?</a></p>
  20. <form name="form1" method="POST" action="<?php echo $cfg_memberurl;?>/resetpassword.php">
  21. <input type="hidden" name="dopost" value="getpasswd">
  22. <input type="hidden" name="setp" value="2">
  23. <input type="hidden" name="id" value="<?php echo $id;?>">
  24. <div class="form-group">
  25. <label>会员账号</label>
  26. <input type="text" name="userid" readonly="readonly" id="iptUserid" class="form-control" value="<?php echo $row['membername']?>">
  27. </div>
  28. <?php if (empty($key)) {?>
  29. <div class="form-group">
  30. <label>会员临时密码</label>
  31. <input type="password" name="pwdtmp" id="iptPwdtmp" class="form-control" placeholder="请输入临时密码">
  32. </div>
  33. <?php } else {?>
  34. <div class="form-group">
  35. <label>验证码</label>
  36. <input name="key" type="hidden" value="<?php echo $key;?>" placeholder="请输入验证码">
  37. </div>
  38. <?php }?>
  39. <div class="form-group">
  40. <label>会员新密码</label>
  41. <input type="password" name="pwd" id="iptPwd" class="form-control" placeholder="请输入新密码">
  42. </div>
  43. <div class="form-group">
  44. <label>会员确认密码</label>
  45. <input type="password" name="pwdok" id="iptPwdok" class="form-control" placeholder="请输入确认密码">
  46. </div>
  47. <div><button type="submit" class="btn btn-success btn-md btn-block">下一步</button></div>
  48. </form>
  49. </div>
  50. </div>
  51. </main>
  52. <?php obtaintheme('foot.htm');?>
  53. </body>
  54. </html>