| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>用户登录 | Yunshop</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <!-- Bootstrap 3.3.6 -->
- <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="/libs/font-awesome/4.5.0/css/font-awesome.min.css">
- <!-- Ionicons -->
- <link rel="stylesheet" href="/libs/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">
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
- <script src="/libs/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body class="hold-transition login-page">
- <div class="login-box">
- <div class="login-logo">
- <a><b>Yun</b>Shop</a>
- </div>
- <!-- /.login-logo -->
- <div class="login-box-body">
- <p class="login-box-msg">登陆</p>
- <form action="{{ url('/admin/login') }}" method="post">
- {!! csrf_field() !!}
- <div class="form-group has-feedback">
- <input type="text" class="form-control" placeholder="用户名" name="username" value="">
- <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
- </div>
- <div class="form-group has-feedback">
- <input type="password" class="form-control" name="password" placeholder="密码">
- <span class="glyphicon glyphicon-lock form-control-feedback"></span>
- </div>
- <div class="row">
- <div class="col-xs-8">
- <div class="checkbox icheck">
- <label>
- <input type="checkbox"> 记 住
- </label>
- </div>
- </div>
- <!-- /.col -->
- <div class="col-xs-4">
- <button type="submit" class="btn btn-primary btn-block btn-flat">登录</button>
- </div>
- <!-- /.col -->
- </div>
- </form>
- <!-- /.social-auth-links -->
- {{--<a href="#">我忘了密码</a><br>--}}
- {{--<a href="#" class="text-center">新注册用户</a>--}}
- </div>
- <!-- /.login-box-body -->
- </div>
- <!-- /.login-box -->
- <!-- jQuery 2.2.0 -->
- <script src="/plugins/jQuery/jQuery-2.2.0.min.js"></script>
- <!-- Bootstrap 3.3.6 -->
- <script src="/bootstrap/js/bootstrap.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>
|