国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

47 lignes
2.4KB

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