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

66 lines
3.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="robots" content="noindex,nofollow">
  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/admin.css">
  11. <script src="/static/web/js/jquery.min.js"></script>
  12. <script src="/static/web/js/login.js"></script>
  13. </head>
  14. <body>
  15. <?php if (preg_match('/MSIE/i',$_SERVER['HTTP_USER_AGENT']) || preg_match('/Trident/i',$_SERVER['HTTP_USER_AGENT'])) {?>
  16. <div class="browsehappy">
  17. <span>您使用的浏览器已过时,请<a href="https://www.dedebiz.com/browsehappy" target="_blank">更换浏览器</a>,提高后台操作体验</span>
  18. </div>
  19. <?php }?>
  20. <div class="login-head shadow-sm mb-3">
  21. <div class="container">
  22. <div class="row align-items-center">
  23. <div class="col-6 col-md-4">
  24. <a href="/" target="_blank" class="logo"><img src="/favicon.ico" title="<?php echo $cfg_soft_enname;?>"><?php echo $cfg_webname;?></a>
  25. </div>
  26. <div class="col-6 col-md-8">
  27. <div class="d-flex justify-content-end text-right">
  28. <a href="https://www.dedebiz.com/service" target="_blank"><i class="fa fa-handshake-o"></i> 技术服务</a>
  29. <a href="/" target="_blank" class="ml-3 d-none d-lg-block"><i class="fa fa-home"></i> 网站首页</a>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="container">
  36. <div class="login-from">
  37. <?php echo $redmsg;?>
  38. <div class="login-box shadow-sm mb-3">
  39. <h1>后台登录</h1>
  40. <form name="form1" method="post" action="login.php">
  41. <input type="hidden" name="gotopage" value="<?php if (!empty($gotopage)) echo RemoveXSS($gotopage);?>">
  42. <input type="hidden" name="dopost" value="login">
  43. <input type="hidden" name="adminstyle" value="newDedeBIZ">
  44. <div class="form-group">
  45. <label for="iptUserid">管理员账号</label>
  46. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入管理员账号" required>
  47. </div>
  48. <div class="form-group">
  49. <label for="iptPwd">管理员密码</label>
  50. <input type="password" name="pwd" id="iptPwd" class="form-control" placeholder="请输入管理员密码" autocomplete="off" required>
  51. </div>
  52. <div id="vdimgck" class="form-group" style="display:none">
  53. <label for="iptValidate">验证码</label>
  54. <div class="input-group">
  55. <input type="text" name="validate" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码">
  56. <img src="<?php echo $cfg_phpurl;?>/vdimgck.php" onclick="this.src='<?php echo $cfg_phpurl;?>/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码" id="validateimg">
  57. </div>
  58. </div>
  59. <div><button type="submit" class="btn btn-success btn-block">登录</button></div>
  60. </form>
  61. </div>
  62. <p><?php echo $cfg_powerby;?></p>
  63. </div>
  64. </div>
  65. </body>
  66. </html>