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

40 lines
1.9KB

  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="/static/web/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="/static/web/css/style.css">
  11. </head>
  12. <body class="body-bg">
  13. <?php obtaintheme('top.htm');?>
  14. <main class="container py-3">
  15. <h2>找回密码第三步</h2>
  16. <p><a href="index_do.php?fmdo=user&dopost=regnew">还没注册?</a></p>
  17. <form name="form1" method="POST" action="<?php echo $cfg_memberurl;?>/resetpassword.php">
  18. <input type="hidden" name="dopost" value="safequestion">
  19. <input type="hidden" name="id" value="<?php echo $member['mid'];?>">
  20. <input type="hidden" name="userid" value="<?php echo $userid;?>">
  21. <div class="form-group">
  22. <?php echo GetSafequestion(0,'safequestion');?>
  23. </div>
  24. <div class="form-group">
  25. <label for="iptSafeanswer">问题答案</label>
  26. <input type="text" name="safeanswer" id="iptSafeanswer" class="form-control" placeholder="请输入问题答案">
  27. </div>
  28. <div class="form-group">
  29. <label for="iptValidate">验证码</label>
  30. <div class="input-group">
  31. <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码">
  32. <img src="<?php echo $cfg_phpurl;?>/vdimgck.php" id="validateimg" onclick="this.src='<?php echo $cfg_phpurl;?>/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码">
  33. </div>
  34. </div>
  35. <div><button type="submit" class="btn btn-success btn-block">下一步</button></div>
  36. </form>
  37. </main>
  38. <?php obtaintheme('foot.htm');?>
  39. </body>
  40. </html>