login.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 3 | Log in</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <!-- Font Awesome -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  11. <!-- Ionicons -->
  12. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
  15. <!-- iCheck -->
  16. <link rel="stylesheet" href="../../plugins/iCheck/square/blue.css">
  17. <!-- Google Font: Source Sans Pro -->
  18. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  19. </head>
  20. <body class="hold-transition login-page">
  21. <div class="login-box">
  22. <div class="login-logo">
  23. <a href="../../index2.html"><b>Admin</b>LTE</a>
  24. </div>
  25. <!-- /.login-logo -->
  26. <div class="card">
  27. <div class="card-body login-card-body">
  28. <p class="login-box-msg">Sign in to start your session</p>
  29. <form action="../../index2.html" method="post">
  30. <div class="form-group has-feedback">
  31. <input type="email" class="form-control" placeholder="Email">
  32. <span class="fa fa-envelope form-control-feedback"></span>
  33. </div>
  34. <div class="form-group has-feedback">
  35. <input type="password" class="form-control" placeholder="Password">
  36. <span class="fa fa-lock form-control-feedback"></span>
  37. </div>
  38. <div class="row">
  39. <div class="col-8">
  40. <div class="checkbox icheck">
  41. <label>
  42. <input type="checkbox"> Remember Me
  43. </label>
  44. </div>
  45. </div>
  46. <!-- /.col -->
  47. <div class="col-4">
  48. <button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
  49. </div>
  50. <!-- /.col -->
  51. </div>
  52. </form>
  53. <div class="social-auth-links text-center mb-3">
  54. <p>- OR -</p>
  55. <a href="#" class="btn btn-block btn-primary">
  56. <i class="fa fa-facebook mr-2"></i> Sign in using Facebook
  57. </a>
  58. <a href="#" class="btn btn-block btn-danger">
  59. <i class="fa fa-google-plus mr-2"></i> Sign in using Google+
  60. </a>
  61. </div>
  62. <!-- /.social-auth-links -->
  63. <p class="mb-1">
  64. <a href="#">I forgot my password</a>
  65. </p>
  66. <p class="mb-0">
  67. <a href="register.html" class="text-center">Register a new membership</a>
  68. </p>
  69. </div>
  70. <!-- /.login-card-body -->
  71. </div>
  72. </div>
  73. <!-- /.login-box -->
  74. <!-- jQuery -->
  75. <script src="../../plugins/jquery/jquery.min.js"></script>
  76. <!-- Bootstrap 4 -->
  77. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  78. <!-- iCheck -->
  79. <script src="../../plugins/iCheck/icheck.min.js"></script>
  80. <script>
  81. $(function () {
  82. $('input').iCheck({
  83. checkboxClass: 'icheckbox_square-blue',
  84. radioClass : 'iradio_square-blue',
  85. increaseArea : '20%' // optional
  86. })
  87. })
  88. </script>
  89. </body>
  90. </html>