login.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <html class="bg-primary">
  3. <head>
  4. <title>AdminLTE - Login</title>
  5. <meta charset="UTF-8">
  6. <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
  7. <!-- bootstrap 3.0.2 -->
  8. <link href="../css/bootstrap.min.css" rel="stylesheet" />
  9. <!-- font Awesome -->
  10. <link href="../css/font-awesome.min.css" rel="stylesheet" />
  11. <!-- Theme style -->
  12. <link href="../theme/theme.css" rel="stylesheet" />
  13. <!-- Google font Signika -->
  14. <link href='http://fonts.googleapis.com/css?family=Signika+Negative' rel='stylesheet' type='text/css'>
  15. </head>
  16. <body class="bg-primary">
  17. <div class="row-fluid">
  18. <div class="valign col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
  19. <h1 class="text-center signika"><i class="fa fa-shield"></i> AdminLTE</h1>
  20. </div>
  21. </div>
  22. <div class="row-fluid">
  23. <div class="col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
  24. <div class="box box-light-blue">
  25. <div class="box-header">
  26. <div class="box-title signika">
  27. <b>Login to your account</b>
  28. </div>
  29. </div>
  30. <div class="box-body bg-white">
  31. <form action="#" method="post">
  32. <div class="form-group">
  33. <div class="input-group">
  34. <span class="input-group-addon control"><i class="fa fa-user"></i></span>
  35. <input type="text" name="username" class="form-control" placeholder="Email or Username"/>
  36. </div>
  37. </div>
  38. <div class="form-group">
  39. <div class="input-group">
  40. <span class="input-group-addon control"><i class="fa fa-lock"></i></span>
  41. <input type="password" name="password" class="form-control" placeholder="Password"/>
  42. </div>
  43. </div>
  44. <div class="form-group">
  45. <input type="checkbox" name="remember"/> Remember me
  46. </div>
  47. <div class="form-group">
  48. <button type="submit" class="btn-block btn btn-light-blue">Login</button>
  49. </div>
  50. </form>
  51. <p>
  52. <a href="#">Forgot your password?</a>
  53. </p>
  54. </div><!-- /.box-body -->
  55. </div><!-- /.box -->
  56. </div><!-- /.col -->
  57. </div><!-- /.row -->
  58. <div class="clearfix"></div>
  59. </body>
  60. </html>