123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>绑定用户</title>
- <link href="<!--{ echo $domain_prefix}-->/static/css/bootstrap.css" rel="stylesheet">
- <link href="<!--{ echo $domain_prefix}-->/static/css/signin.css" rel="stylesheet">
- </head>
- <body>
- <div class="container">
- <iframe name="hidden_iframe" style="display: none;"></iframe>
- <form action="<!--{ echo $domain_prefix}-->/index.php?m=acp&c=account&a=bind" class="form-signin" role="form"
- method="post" target="hidden_iframe">
- <h2 class="form-signin-heading">系统账号与个人绑定</h2>
- <input type="text" class="form-control" name="username" placeholder="个人账号,没有请先注册" required
- autofocus>
- <input type="password" class="form-control" name="password" placeholder="个人账号密码" required>
- <input type="password" class="form-control" name="sys_password" placeholder="系统账号密码" required>
- <button class="btn btn-lg btn-primary btn-block" name="login_btn" type="submit">确定</button>
- </form>
- <div class="footer" style="text-align: center;margin-top: 200px;">
- Copyright © <!--{echo date('Y', time()) == '2014' ? '2014' : '2014-' . date('Y', time()) }-->
- </div>
- </div>
- </body>
- </html>
|