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

67 lines
3.2KB

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