12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html >
- <head>
- <meta charset="UTF-8">
- <title>龙熠-营销系统</title>
- <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
- <!-- bootstrap 3.0.2 -->
- <link href="static/AdminLTE/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
- <!-- font Awesome -->
- <link href="static/AdminLTE/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
- <!-- Theme style -->
- <link href="static/AdminLTE/css/AdminLTE.css" rel="stylesheet" type="text/css" />
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="static/js/html5shiv.js"></script>
- <script src="static/js/respond.min.js"></script>
- <![endif]-->
- </head>
- <body style="height: 900px;background: url(static/AdminLTE/img/blur-background09.jpg) repeat-y;">
- <div class="form-box" id="login-box" >
- <{if $errorinfo}>
- <div class="" style="margin-top:20px;text-align:center;">
- <div class="alert alert-info" style="color:red;padding-left:0;margin-left:0;"><{$errorinfo}></div>
- </div>
- <{/if}>
- <div class="header">营销-后台登陆</div>
- <form method="post" action="/?m=admin_login">
- <input type="hidden" name="do-login" value="yes" />
- <div class="body bg-gray">
- <div class="form-group">
- <input type="text" name="uname" class="form-control" placeholder="用户名"/>
- </div>
- <div class="form-group">
- <input type="password" name="pwd" class="form-control" placeholder="密码"/>
- </div>
- </div>
- <div class="footer">
- <button type="submit" class="btn bg-olive btn-block" style="background-color:#3c8dbc;">登录</button>
- </div>
- </form>
- </div>
- <style>
- .form-box .header{background:#3c8dbc;}
- </style>
- <!-- Bootstrap -->
- <script src="static/AdminLTE/js/bootstrap.min.js" type="text/javascript"></script>
- </body>
- </html>
|