123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>AdminLTE 3 | Log in</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
- <!-- Ionicons -->
- <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
- <!-- icheck bootstrap -->
- <link rel="stylesheet" href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css">
- <!-- Theme style -->
- <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
- <!-- Google Font: Source Sans Pro -->
- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
- </head>
- <body class="hold-transition login-page">
- <div class="login-box">
- <div class="login-logo">
- <a href="../../index2.html"><b>Admin</b>LTE</a>
- </div>
- <!-- /.login-logo -->
- <div class="card">
- <div class="card-body login-card-body">
- <p class="login-box-msg">Sign in to start your session</p>
- <form action="../../index3.html" method="post">
- <div class="input-group mb-3">
- <input type="email" class="form-control" placeholder="Email">
- <div class="input-group-append input-group-text">
- <span class="fas fa-envelope"></span>
- </div>
- </div>
- <div class="input-group mb-3">
- <input type="password" class="form-control" placeholder="Password">
- <div class="input-group-append input-group-text">
- <span class="fas fa-lock"></span>
- </div>
- </div>
- <div class="row">
- <div class="col-8">
- <div class="icheck-primary">
- <input type="checkbox" id="remember">
- <label for="remember">
- Remember Me
- </label>
- </div>
- </div>
- <!-- /.col -->
- <div class="col-4">
- <button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
- </div>
- <!-- /.col -->
- </div>
- </form>
- <div class="social-auth-links text-center mb-3">
- <p>- OR -</p>
- <a href="#" class="btn btn-block btn-primary">
- <i class="fab fa-facebook mr-2"></i> Sign in using Facebook
- </a>
- <a href="#" class="btn btn-block btn-danger">
- <i class="fab fa-google-plus mr-2"></i> Sign in using Google+
- </a>
- </div>
- <!-- /.social-auth-links -->
- <p class="mb-1">
- <a href="#">I forgot my password</a>
- </p>
- <p class="mb-0">
- <a href="register.html" class="text-center">Register a new membership</a>
- </p>
- </div>
- <!-- /.login-card-body -->
- </div>
- </div>
- <!-- /.login-box -->
- <!-- jQuery -->
- <script src="../../plugins/jquery/jquery.min.js"></script>
- <!-- Bootstrap 4 -->
- <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
- </body>
- </html>
|