国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

63 rindas
2.9KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang;?>">
  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 text-left">
  24. <div class="logo"><img src="../static/web/img/logo.png" title="<?php echo $cfg_soft_enname;?>" class="logo"></div>
  25. </div>
  26. <div class="col-6 text-right d-flex justify-content-end biz-nav">
  27. <a href="/" target="_blank" class="biz-nav-a"><i class="fa fa-home"></i> 网站首页</a>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="container">
  33. <div class="login-from">
  34. <?php echo $redmsg;?>
  35. <div class="login-area shadow-sm">
  36. <h2 class="mb-4 text-center">后台登录</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">
  44. </div>
  45. <div class="form-group">
  46. <label for="iptPassword">密码</label>
  47. <input type="password" name="pwd" id="iptPassword" class="form-control">
  48. </div>
  49. <div class="form-group">
  50. <label for="iptValidate">验证码</label>
  51. <div class="input-group">
  52. <input type="text" name="validate" id="iptValidate" class="form-control text-uppercase">
  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. </body>
  63. </html>