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

86 lines
3.7KB

  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. <script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script>
  7. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css">
  8. <link href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css" rel="stylesheet">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/member.css">
  11. <title>密码帮手 - 找回密码第一步</title>
  12. <script type="text/javascript">
  13. function changeAuthCode() {
  14. var num = new Date().getTime();
  15. var rand = Math.round(Math.random() * 10000);
  16. num = num + rand;
  17. $('#ver_code').css('visibility','visible');
  18. if ($("#vdimgck")[0]) {
  19. $("#vdimgck")[0].src = "../apps/vdimgck.php?tag=" + num;
  20. }
  21. return false;
  22. }
  23. function hideVc()
  24. {
  25. $('#ver_code').css('visibility','hidden');
  26. }
  27. $(document).ready(function(){
  28. $("#vdcode").focus(function(){
  29. var leftpos = $("#vdcode").position().left;
  30. $('#ver_code').css('left', leftpos+'px');
  31. $('#ver_code').css('visibility','visible');
  32. });
  33. $("input[type='password']").click(function(){
  34. hideVc()
  35. });
  36. $("#txtUsername").click(function(){
  37. hideVc()
  38. });
  39. $("input[type='radio']").focus(function(){
  40. hideVc()
  41. });
  42. })
  43. </script>
  44. </head>
  45. <body>
  46. <?php include(DEDEMEMBER."/templets/top.htm"); ?>
  47. <?php include(DEDEMEMBER."/templets/header.htm"); ?>
  48. <main class="">
  49. <div class="container">
  50. <div class="main mb-3">
  51. <p>找回密码第一步<em><a href="index_do.php?fmdo=user&dopost=regnew">还没注册 点击这里</a></em></p>
  52. <form name='form1' method='POST' action='<?php echo $cfg_memberurl;?>/resetpassword.php'>
  53. <input type="hidden" name="dopost" value="getpwd">
  54. <input type="hidden" name="gourl" value="<?php if(!empty($gourl)) echo $gourl;?>">
  55. <div class="form-group">
  56. <div class="input-group">
  57. <input placeholder="用户名" name="userid" type="text" class="form-control" id="txtUsername">
  58. </div>
  59. </div>
  60. <div class="form-group">
  61. <div class="input-group">
  62. <input placeholder="邮箱" name="mail" type="text" class="form-control" id="txtMail">
  63. </div>
  64. </div>
  65. <div class="form-group">
  66. <div class="input-group">
  67. <input name="vdcode" placeholder="输入图形验证码" type="text" class="form-control" id="iptValidate" style="text-transform:uppercase">
  68. <img src="<?php echo $cfg_cmsurl; ?>/apps/vdimgck.php" id="validateimg" style="cursor:pointer" onclick="this.src='<?php echo $cfg_cmsurl; ?>/apps/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="点击我更换图片" alt="点击我更换图片" />
  69. </div>
  70. </div>
  71. <div class="form-group">
  72. <div class="input-group">
  73. <select name="type" class="form-control">
  74. <option value="1" selected>通过邮件取回</option>
  75. <option value="2">通过安全问题取回</option>
  76. </select>
  77. </div>
  78. </div>
  79. <button type="submit" class="btn btn-success btnLogin">下一步</button>
  80. </form>
  81. </div>
  82. </div>
  83. </main>
  84. <?php include(DEDEMEMBER."/templets/footer.htm"); ?>
  85. </body>
  86. </html>