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

48 lines
2.5KB

  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">
  15. <div class="login-from">
  16. <div class="login-box shadow-sm rounded">
  17. <h2 class="text-center mb-3">会员登录</h2>
  18. <form name="form1" method="POST" action="<?php echo $cfg_memberurl;?>/index_do.php">
  19. <input type="hidden" name="fmdo" value="login">
  20. <input type="hidden" name="dopost" value="login">
  21. <input type="hidden" name="keeptime" value="604800">
  22. <input type="hidden" name="gourl" value="<?php if (!empty($gourl)) echo $gourl;?>">
  23. <div class="form-group">
  24. <label for="iptUserid">账号</label>
  25. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入登录账号" required="required">
  26. </div>
  27. <div class="form-group">
  28. <label for="iptPwd">密码</label>
  29. <input type="password" name="pwd" id="iptPwd" class="form-control" placeholder="请输入登录密码" required="required">
  30. </div>
  31. <div id="vdimgck" class="form-group" style="display:none">
  32. <label for="iptValidate">验证码</label>
  33. <div class="input-group">
  34. <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码">
  35. <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="验证码">
  36. </div>
  37. </div>
  38. <div class="form-group"><a href="<?php echo $cfg_memberurl;?>/resetpassword.php">忘记密码?</a></div>
  39. <div class="form-group"><button type="submit" class="btn btn-success btn-md btn-block">登录</button></div>
  40. <div><a href="<?php echo $cfg_memberurl;?>/index_do.php?fmdo=user&dopost=regnew" class="btn btn-outline-success btn-md btn-block">注册</a></div>
  41. </form>
  42. </div>
  43. </div>
  44. </main>
  45. <?php obtaintheme('foot.htm');?>
  46. <script src="/static/web/js/login.js"></script>
  47. </body>
  48. </html>