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

53 lines
2.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>会员登录-<?php echo $cfg_webname;?></title>
  7. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  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/style.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/user.css">
  11. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  12. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/login.js"></script>
  13. </head>
  14. <body class="body-bg">
  15. <?php pasterTempletDiy('top.htm');?>
  16. <div class="container">
  17. <div class="row">
  18. <div class="col-md-12 text-center">
  19. <div class="login-from d-inline-block">
  20. <div class="login-box shadow-sm rounded text-left">
  21. <h2 class="text-center mb-3">用户登录</h2>
  22. <form name='form1' method='POST' action='<?php echo $cfg_memberurl;?>/index_do.php'>
  23. <input type="hidden" name="fmdo" value="login">
  24. <input type="hidden" name="dopost" value="login">
  25. <input type="hidden" name="keeptime" value="604800">
  26. <input type="hidden" name="gourl" value="<?php if (!empty($gourl)) echo $gourl;?>">
  27. <div class="form-group">
  28. <label for="iptUserid">账号</label>
  29. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入账号">
  30. </div>
  31. <div class="form-group">
  32. <label for="iptPwd">密码</label>
  33. <input type="password" name="pwd" id="iptPwd" class="form-control" placeholder="请输入密码">
  34. </div>
  35. <div class="form-group" id="vdimgck" style="display:none">
  36. <label for="iptValidate">验证码</label>
  37. <div class="input-group">
  38. <input type="text" name="vdcode" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码">
  39. <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="验证码">
  40. </div>
  41. </div>
  42. <div class="form-group"><button type="submit" class="btn btn-success btn-sm w-100">登录</button></div>
  43. <div class="form-group"><a href="<?php echo $cfg_memberurl;?>/index_do.php?fmdo=user&dopost=regnew" class="btn btn-outline-success btn-sm w-100">注册</a></div>
  44. <div><a href="<?php echo $cfg_memberurl;?>/resetpassword.php" class="text-dark">忘记密码</a></div>
  45. </form>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. <?php pasterTempletDiy('foot.htm');?>
  52. </body>
  53. </html>