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

41 lines
2.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang;?>">
  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>
  14. <?php pasterTempletDiy('top.htm');?>
  15. <div class="container py-3">
  16. <div class="row">
  17. <div class="col-md-12">
  18. <p>找回密码第二步<em><a href="index_do.php?fmdo=user&dopost=regnew">还没注册</a></em></p>
  19. <form name="form1" method="POST" action="<?php echo $cfg_memberurl;?>/resetpassword.php">
  20. <input type="hidden" name="dopost" value="getpasswd">
  21. <input type="hidden" name="setp" value="2">
  22. <input type="hidden" name="id" value="<?php echo $id;?>">
  23. <div class="form-group"><input name="userid" type="text" readonly="readonly" value="<?php echo $row['membername']?>" class="form-control" id="txtUsername" placeholder="用户名"></div>
  24. <?php if (empty($key)){?>
  25. <div class="form-group"><input name="pwdtmp" type="password" class="form-control" placeholder="临时登录密码"></div>
  26. <?php } else {?>
  27. <input name="key" type="hidden" value="<?php echo $key;?>">
  28. <?php }?>
  29. <div class="form-group">
  30. <div class="input-group"><input name="pwd" type="password" class="form-control" placeholder="新密码"></div>
  31. </div>
  32. <div class="form-group"><input placeholder="确认新密码" name="pwdok" type="password" class="form-control"></div>
  33. <div><button type="submit" class="btn btn-success w-100">下一步</button></div>
  34. </form>
  35. </div>
  36. </div>
  37. </div>
  38. <?php pasterTempletDiy('foot.htm');?>
  39. </body>
  40. </html>
  41. </html>