bind.htm 1.4 KB

123456789101112131415161718192021222324252627282930
  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=bind" class="form-signin" role="form"
  15. method="post" target="hidden_iframe">
  16. <h2 class="form-signin-heading">系统账号与个人绑定</h2>
  17. <input type="text" class="form-control" name="username" placeholder="个人账号,没有请先注册" required
  18. autofocus>
  19. <input type="password" class="form-control" name="password" placeholder="个人账号密码" required>
  20. <input type="password" class="form-control" name="sys_password" placeholder="系统账号密码" required>
  21. <button class="btn btn-lg btn-primary btn-block" name="login_btn" type="submit">确定</button>
  22. </form>
  23. <div class="footer" style="text-align: center;margin-top: 200px;">
  24. Copyright &copy; <!--{echo date('Y', time()) == '2014' ? '2014' : '2014-' . date('Y', time()) }-->
  25. </div>
  26. </div>
  27. </body>
  28. </html>