| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>BIT System 后台管理平台</title>
- <link href="bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
- <link href="css/base.css" rel="stylesheet" type="text/css" />
- <link href="css/login.css" rel="stylesheet" type="text/css" />
- <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <script src="js/jquery-1.7.2.min.js"></script>
- <script src="bootstrap/js/bootstrap.js"></script>
- </head>
- <body>
- <div class="container">
- <div class="logo">BIT System</div>
- <div class="login">
- <form class="well form-inline" action="/cp/login/check">
- 用户名:
- <input type="text" name="j_username" class="input-medium">
- 密码:
- <input type="password" name="j_password" class="input-medium">
- <label class="checkbox">
- <input type="checkbox">
- 记住我 </label>
- <button type="submit" class="btn">登陆</button>
- </form>
- <span class="fn-left"><a data-toggle="modal" href="#pwd-modal">忘记密码?</a> | <a href="/">帮助</a> | <a href="/">返回首页</a> </span> <span class="fn-right">© bitzh.com</span> </div>
- </div>
- <div id="pwd-modal" class="modal hide fade" style="display: none; ">
- <div class="modal-header"> <a class="close" data-dismiss="modal">×</a>
- <h4>忘记密码?</h4>
- </div>
- <div class="modal-body">
- <p>请联系您的网站管理员重置密码!</p>
- </div>
- <div class="modal-footer"> <a href="#" class="btn btn-primary" data-dismiss="modal">确定</a> </div>
- </div>
- </body>
- </html>
|