login.htm 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>登录</title>
  8. <link href="<!--{ echo $domain_prefix}-->/static/css/bootstrap.css" rel="stylesheet">
  9. <link href="<!--{ echo $domain_prefix}-->/static/css/signin.css" rel="stylesheet">
  10. </head>
  11. <body>
  12. <div class="container">
  13. <iframe name="hidden_iframe" style="display: none;"></iframe>
  14. <form action="<!--{ echo $domain_prefix}-->/index.php?m=acp&c=account&a=login" class="form-signin" role="form" method="post" target="hidden_iframe">
  15. <h2 class="form-signin-heading">管理系统</h2>
  16. <input type="text" class="form-control" name="username" placeholder="账户" required
  17. autofocus>
  18. <input type="password" class="form-control" name="password" placeholder="密码" required>
  19. <button class="btn btn-lg btn-primary btn-block" name="login_btn" type="submit">登录</button>
  20. </form>
  21. <div class="footer" style="text-align: center;margin-top: 200px;">
  22. &copy;<!--{echo date('Y', time()) == '2016' ? '2016' : '2016-' . date('Y', time()) }-->
  23. </div>
  24. </div>
  25. </body>
  26. </html>