login.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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://use.fontawesome.com/releases/v5.9.0/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
  11. <!-- Ionicons -->
  12. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  13. <!-- icheck bootstrap -->
  14. <link rel="stylesheet" href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  15. <!-- Theme style -->
  16. <link rel="stylesheet" href="../../dist/css/adminlte.min.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="../../index3.html" method="post">
  30. <div class="input-group mb-3">
  31. <input type="email" class="form-control" placeholder="Email">
  32. <div class="input-group-append input-group-text">
  33. <span class="fas fa-envelope"></span>
  34. </div>
  35. </div>
  36. <div class="input-group mb-3">
  37. <input type="password" class="form-control" placeholder="Password">
  38. <div class="input-group-append input-group-text">
  39. <span class="fas fa-lock"></span>
  40. </div>
  41. </div>
  42. <div class="row">
  43. <div class="col-8">
  44. <div class="icheck-primary">
  45. <input type="checkbox" id="remember">
  46. <label for="remember">
  47. Remember Me
  48. </label>
  49. </div>
  50. </div>
  51. <!-- /.col -->
  52. <div class="col-4">
  53. <button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
  54. </div>
  55. <!-- /.col -->
  56. </div>
  57. </form>
  58. <div class="social-auth-links text-center mb-3">
  59. <p>- OR -</p>
  60. <a href="#" class="btn btn-block btn-primary">
  61. <i class="fab fa-facebook mr-2"></i> Sign in using Facebook
  62. </a>
  63. <a href="#" class="btn btn-block btn-danger">
  64. <i class="fab fa-google-plus mr-2"></i> Sign in using Google+
  65. </a>
  66. </div>
  67. <!-- /.social-auth-links -->
  68. <p class="mb-1">
  69. <a href="#">I forgot my password</a>
  70. </p>
  71. <p class="mb-0">
  72. <a href="register.html" class="text-center">Register a new membership</a>
  73. </p>
  74. </div>
  75. <!-- /.login-card-body -->
  76. </div>
  77. </div>
  78. <!-- /.login-box -->
  79. <!-- jQuery -->
  80. <script src="../../plugins/jquery/jquery.min.js"></script>
  81. <!-- Bootstrap 4 -->
  82. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  83. </body>
  84. </html>