1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html class="bg-primary">
- <head>
- <title>AdminLTE - Login</title>
- <meta charset="UTF-8">
- <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
- <!-- bootstrap 3.0.2 -->
- <link href="../css/bootstrap.min.css" rel="stylesheet" />
- <!-- font Awesome -->
- <link href="../css/font-awesome.min.css" rel="stylesheet" />
- <!-- Theme style -->
- <link href="../theme/theme.css" rel="stylesheet" />
- <!-- Google font Signika -->
- <link href='http://fonts.googleapis.com/css?family=Signika+Negative' rel='stylesheet' type='text/css'>
- </head>
- <body class="bg-primary">
- <div class="row-fluid">
- <div class="valign col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
- <h1 class="text-center signika"><i class="fa fa-shield"></i> AdminLTE</h1>
- </div>
- </div>
- <div class="row-fluid">
- <div class="col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
- <div class="box box-light-blue">
- <div class="box-header">
- <div class="box-title signika">
- <b>Login to your account</b>
- </div>
- </div>
- <div class="box-body bg-white">
- <form action="#" method="post">
- <div class="form-group">
- <div class="input-group">
- <span class="input-group-addon control"><i class="fa fa-user"></i></span>
- <input type="text" name="username" class="form-control" placeholder="Email or Username"/>
- </div>
- </div>
- <div class="form-group">
- <div class="input-group">
- <span class="input-group-addon control"><i class="fa fa-lock"></i></span>
- <input type="password" name="password" class="form-control" placeholder="Password"/>
- </div>
- </div>
- <div class="form-group">
- <input type="checkbox" name="remember"/> Remember me
- </div>
- <div class="form-group">
- <button type="submit" class="btn-block btn btn-light-blue">Login</button>
- </div>
- </form>
- <p>
- <a href="#">Forgot your password?</a>
- </p>
- </div><!-- /.box-body -->
- </div><!-- /.box -->
- </div><!-- /.col -->
- </div><!-- /.row -->
-
- <div class="clearfix"></div>
- </body>
- </html>
|