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

52 lines
2.8KB

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