12345678910111213141516171819202122232425262728 |
- <!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=login" 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>
- <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;">
- ©<!--{echo date('Y', time()) == '2016' ? '2016' : '2016-' . date('Y', time()) }-->
- </div>
- </div>
- </body>
- </html>
|