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

63 lines
2.9KB

  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. </head>
  13. <body>
  14. <?php if (preg_match('/MSIE/i',$_SERVER['HTTP_USER_AGENT']) || preg_match('/Trident/i',$_SERVER['HTTP_USER_AGENT'])){?>
  15. <div id="browsehappy">
  16. <span>您正在使用一个过时的浏览器,请您<a href="https://www.dedebiz.com/browsehappy" target="_blank">升级浏览器</a>,以提高您对后台体验</span>
  17. <a onclick="document.getElementById('browsehappy').style.display='none';" class="browsehappy-close">×</a>
  18. </div>
  19. <?php }?>
  20. <div class="d-flex flex-md-row align-items-center shadow-sm biz-head mb-5">
  21. <div class="container">
  22. <div class="row">
  23. <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>
  24. <div class="col-6 col-md-8 text-right d-flex justify-content-end biz-nav"><a href="/" target="_blank" class="biz-nav-a"><i class="fa fa-home"></i> 网站首页</a></div>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="container">
  29. <div class="row">
  30. <div class="col-md-12">
  31. <div class="login-from">
  32. <?php echo $redmsg;?>
  33. <div class="login-area shadow-sm">
  34. <h2 class="text-center mb-3">后台登录</h2>
  35. <form name="form1" method="post" action="login.php">
  36. <input type="hidden" name="gotopage" value="<?php if (!empty($gotopage)) echo RemoveXSS($gotopage);?>">
  37. <input type="hidden" name="dopost" value="login">
  38. <input type="hidden" name="adminstyle" value="newDedeBIZ">
  39. <div class="form-group">
  40. <label for="iptUserid">用户名</label>
  41. <input type="text" name="userid" id="iptUserid" class="form-control">
  42. </div>
  43. <div class="form-group">
  44. <label for="iptPassword">密码</label>
  45. <input type="password" name="pwd" id="iptPassword" class="form-control">
  46. </div>
  47. <div class="form-group">
  48. <label for="iptValidate">验证码</label>
  49. <div class="input-group">
  50. <input type="text" name="validate" id="iptValidate" class="form-control text-uppercase">
  51. <img src="../apps/vdimgck.php" onclick="this.src='../apps/vdimgck.php?'+new Date().getTime()+Math.round(Math.random() * 10000)" title="验证码" id="validateimg">
  52. </div>
  53. </div>
  54. <div><button type="submit" class="btn btn-success w-100">登录</button></div>
  55. <div class="login-power"><?php echo $cfg_powerby;?></div>
  56. </form>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </body>
  63. </html>