国内流行的内容管理系统(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.

52 lines
2.3KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>找回密码第二步-<?php echo $cfg_webname;?></title>
  7. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
  11. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/user.css">
  12. </head>
  13. <body class="body-bg">
  14. <?php pasterTempletDiy('top.htm');?>
  15. <div 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="txtUsername" 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" class="form-control" placeholder="请输入临时密码">
  32. </div>
  33. <?php } else {?>
  34. <input name="key" type="hidden" value="<?php echo $key;?>">
  35. <?php }?>
  36. <div class="form-group">
  37. <label>新密码</label>
  38. <input type="password" name="pwd" class="form-control" placeholder="请输入新密码">
  39. </div>
  40. <div class="form-group">
  41. <label>确认密码</label>
  42. <input type="password" name="pwdok" class="form-control" placeholder="请输入确认密码">
  43. </div>
  44. <div><button type="submit" class="btn btn-success btn-sm w-100">下一步</button></div>
  45. </form>
  46. </div>
  47. </div>
  48. </div>
  49. <?php pasterTempletDiy('foot.htm');?>
  50. </body>
  51. </html>
  52. </html>