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

65 lines
3.2KB

  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. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  8. <title><?php echo $cfg_webname;?>后台登录</title>
  9. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  11. <link rel="stylesheet" href="css/login.min.css">
  12. <script src="../static/web/js/jquery.min.js"></script>
  13. <script src="../static/web/js/login.js"></script>
  14. </head>
  15. <body>
  16. <?php if (preg_match('/MSIE/i',$_SERVER['HTTP_USER_AGENT']) || preg_match('/Trident/i',$_SERVER['HTTP_USER_AGENT'])) {?>
  17. <div id="browsehappy">
  18. <span>您使用的浏览器已过时,请<a href="https://www.dedebiz.com/browsehappy" target="_blank">升级浏览器</a>,提高后台操作体验</span>
  19. <a onclick="document.getElementById('browsehappy').style.display='none';" class="browsehappy-close">×</a>
  20. </div>
  21. <?php }?>
  22. <div class="d-flex flex-md-row align-items-center shadow-sm admin-head mb-5">
  23. <div class="container">
  24. <div class="row">
  25. <div class="col-6 col-md-4 text-left"><img src="../static/web/img/logo.png" title="<?php echo $cfg_soft_enname;?>" class="logo"></div>
  26. <div class="col-6 col-md-8 text-right d-flex justify-content-end admin-nav"><a href="/" target="_blank" class="admin-nav-a"><i class="fa fa-home"></i> 网站首页</a></div>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="container">
  31. <div class="row">
  32. <div class="col-md-12">
  33. <div class="login-from">
  34. <?php echo $redmsg;?>
  35. <div class="login-box shadow-sm">
  36. <h2 class="text-center mb-3">管理登录</h2>
  37. <form name="form1" method="post" action="login.php">
  38. <input type="hidden" name="gotopage" value="<?php if (!empty($gotopage)) echo RemoveXSS($gotopage);?>">
  39. <input type="hidden" name="dopost" value="login">
  40. <input type="hidden" name="adminstyle" value="newDedeBIZ">
  41. <div class="form-group">
  42. <label for="iptUserid">账号</label>
  43. <input type="text" name="userid" id="iptUserid" class="form-control" placeholder="请输入管理员账号">
  44. </div>
  45. <div class="form-group">
  46. <label for="iptPassword">密码</label>
  47. <input type="password" name="pwd" id="iptPassword" class="form-control" placeholder="请输入管理员密码">
  48. </div>
  49. <div id="vdimgck" class="form-group" style="display:none">
  50. <label for="iptValidate">验证码</label>
  51. <div class="input-group">
  52. <input type="text" name="validate" id="iptValidate" class="form-control text-uppercase" placeholder="请输入验证码">
  53. <img src="../apps/vdimgck.php" onclick="this.src='../apps/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码" id="validateimg">
  54. </div>
  55. </div>
  56. <div><button type="submit" class="btn btn-success w-100">登录</button></div>
  57. <div class="login-power"><?php echo $cfg_powerby;?></div>
  58. </form>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </body>
  65. </html>