|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>找回密码第一步-<?php echo $cfg_webname;?></title>
- <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
- </head>
- <body class="body-bg">
- <?php pasterTempletDiy('top.htm');?>
- <main class="container py-3">
- <div class="row">
- <div class="col-md-12">
- <h2>找回密码第一步</h2>
- <p><a href="index_do.php?fmdo=user&dopost=regnew">还没注册?</a></p>
- <form name="form1" method="POST" action="<?php echo $cfg_memberurl;?>/resetpassword.php">
- <input type="hidden" name="dopost" value="getpwd">
- <input type="hidden" name="gourl" value="<?php if (!empty($gourl)) echo $gourl;?>">
- <div class="form-group">
- <label for="txtUsername">账号</label>
- <input type="text" name="userid" id="txtUsername" class="form-control" placeholder="请输入账号">
- </div>
- <div class="form-group">
- <label for="txtMail">邮箱</label>
- <input type="text" name="mail" id="txtMail" class="form-control" placeholder="请输入邮箱">
- </div>
- <div class="form-group">
- <label for="iptValidate">找回方式</label>
- <div class="input-group">
- <select name="type" class="form-control">
- <option value="1" selected>通过邮件取回</option>
- <option value="2">通过安全问题取回</option>
- </select>
- </div>
- </div>
- <div class="form-group">
- <label for="iptValidate">验证码</label>
- <div class="input-group">
- <input type="text" name="vdcode" class="form-control text-uppercase" id="iptValidate" placeholder="请输入验证码">
- <img src="<?php echo $cfg_cmsurl;?>/apps/vdimgck.php" id="validateimg" onclick="this.src='<?php echo $cfg_cmsurl;?>/apps/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码">
- </div>
- </div>
- <div><button type="submit" class="btn btn-success btn-md btn-block">下一步</button></div>
- </form>
- </div>
- </div>
- </main>
- <?php pasterTempletDiy('foot.htm');?>
- <script>
- function changeAuthCode() {
- var num = new Date().getTime();
- var rand = Math.round(Math.random() * 10000);
- num = num + rand;
- $('#ver_code').css('visibility', 'visible');
- if ($("#vdimgck")[0]) {
- $("#vdimgck")[0].src = "../apps/vdimgck.php?tag=" + num;
- }
- return false;
- }
- function hideVc() {
- $('#ver_code').css('visibility', 'hidden');
- }
- $(document).ready(function() {
- $("#vdcode").focus(function() {
- var leftpos = $("#vdcode").position().left;
- $('#ver_code').css('left', leftpos + 'px');
- $('#ver_code').css('visibility', 'visible');
- });
- $("input[type='password']").click(function() {
- hideVc()
- });
- $("#txtUsername").click(function() {
- hideVc()
- });
- $("input[type='radio']").focus(function() {
- hideVc()
- });
- })
- </script>
- </body>
- </html>
|