| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <!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://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
- <!-- Ionicons -->
- <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
- <!-- Theme style -->
- <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
- <!-- iCheck -->
- <link rel="stylesheet" href="../../plugins/iCheck/square/blue.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="../../index2.html" method="post">
- <div class="form-group has-feedback">
- <input type="email" class="form-control" placeholder="Email">
- <span class="fa fa-envelope form-control-feedback"></span>
- </div>
- <div class="form-group has-feedback">
- <input type="password" class="form-control" placeholder="Password">
- <span class="fa fa-lock form-control-feedback"></span>
- </div>
- <div class="row">
- <div class="col-8">
- <div class="checkbox icheck">
- <label>
- <input type="checkbox"> 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="fa fa-facebook mr-2"></i> Sign in using Facebook
- </a>
- <a href="#" class="btn btn-block btn-danger">
- <i class="fa 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>
- <!-- iCheck -->
- <script src="../../plugins/iCheck/icheck.min.js"></script>
- <script>
- $(function () {
- $('input').iCheck({
- checkboxClass: 'icheckbox_square-blue',
- radioClass : 'iradio_square-blue',
- increaseArea : '20%' // optional
- })
- })
- </script>
- </body>
- </html>
|