login.html 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 2 | Log in</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  9. <!-- Bootstrap 3.3.5 -->
  10. <link rel="stylesheet" href="../../bootstrap/css/bootstrap.min.css">
  11. <!-- Font Awesome -->
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  13. <!-- Ionicons -->
  14. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  15. <!-- Theme style -->
  16. <link rel="stylesheet" href="../../dist/css/AdminLTE.min.css">
  17. <!-- iCheck -->
  18. <link rel="stylesheet" href="../../plugins/iCheck/square/blue.css">
  19. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  20. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  21. <!--[if lt IE 9]>
  22. <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  23. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  24. <![endif]-->
  25. </head>
  26. <body class="hold-transition login-page">
  27. <div class="login-box">
  28. <div class="login-logo">
  29. <a href="../../index2.html"><b>Admin</b>LTE</a>
  30. </div><!-- /.login-logo -->
  31. <div class="login-box-body">
  32. <p class="login-box-msg">Sign in to start your session</p>
  33. <form action="../../index2.html" method="post">
  34. <div class="form-group has-feedback">
  35. <input type="email" class="form-control" placeholder="Email">
  36. <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
  37. </div>
  38. <div class="form-group has-feedback">
  39. <input type="password" class="form-control" placeholder="Password">
  40. <span class="glyphicon glyphicon-lock form-control-feedback"></span>
  41. </div>
  42. <div class="row">
  43. <div class="col-xs-8">
  44. <div class="checkbox icheck">
  45. <label>
  46. <input type="checkbox"> Remember Me
  47. </label>
  48. </div>
  49. </div><!-- /.col -->
  50. <div class="col-xs-4">
  51. <button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
  52. </div><!-- /.col -->
  53. </div>
  54. </form>
  55. <div class="social-auth-links text-center">
  56. <p>- OR -</p>
  57. <a href="#" class="btn btn-block btn-social btn-facebook btn-flat"><i class="fa fa-facebook"></i> Sign in using Facebook</a>
  58. <a href="#" class="btn btn-block btn-social btn-google btn-flat"><i class="fa fa-google-plus"></i> Sign in using Google+</a>
  59. </div><!-- /.social-auth-links -->
  60. <a href="#">I forgot my password</a><br>
  61. <a href="register.html" class="text-center">Register a new membership</a>
  62. </div><!-- /.login-box-body -->
  63. </div><!-- /.login-box -->
  64. <!-- jQuery 2.1.4 -->
  65. <script src="../../plugins/jQuery/jQuery-2.1.4.min.js"></script>
  66. <!-- Bootstrap 3.3.5 -->
  67. <script src="../../bootstrap/js/bootstrap.min.js"></script>
  68. <!-- iCheck -->
  69. <script src="../../plugins/iCheck/icheck.min.js"></script>
  70. <script>
  71. $(function () {
  72. $('input').iCheck({
  73. checkboxClass: 'icheckbox_square-blue',
  74. radioClass: 'iradio_square-blue',
  75. increaseArea: '20%' // optional
  76. });
  77. });
  78. </script>
  79. </body>
  80. </html>