97 lines
3.8 KiB
PHP
97 lines
3.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="ID Thiên Ân">
|
|
<title>{{ $GetSetting->title }} | {{ $GetSetting->namepage }}</title>
|
|
<meta name="description" content="{{ $GetSetting->description }}" />
|
|
<meta property="og:url" content="{{ url()->current() }}">
|
|
<meta property="og:type" content="article">
|
|
<meta property="og:title" content="{{ $GetSetting->description }}">
|
|
<meta property="og:description" content="{{ $GetSetting->description }}">
|
|
<link rel="shortcut icon" href="{{ asset('image/favicon.png') }}">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="{{ asset('/css/ionicons.min.css') }}">
|
|
<!-- jvectormap -->
|
|
<link rel="stylesheet" href="{{ asset('/css/jquery-jvectormap.css') }}">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="{{ asset('/css/AdminLTE.min.css') }}">
|
|
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
|
folder instead of downloading all of them to reduce the load. -->
|
|
<link rel="stylesheet" href="{{ asset('/css/_all-skins.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/css/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="{{ asset('/js/html5shiv.min.js') }}"></script>
|
|
<script src="{{ asset('/js/respond.min.js') }}"></script>
|
|
<![endif]-->
|
|
|
|
<!-- Google Font -->
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
|
|
</head>
|
|
<body class="hold-transition skin-blue sidebar-mini">
|
|
<div id="main" class="wrapper">
|
|
<div class="login-box">
|
|
<div class="login-logo">
|
|
<a href="{{ route('login') }}" style="color: #fff;"><b>Admin</b>LTE</a>
|
|
</div>
|
|
<!-- /.login-logo -->
|
|
<div class="login-box-body">
|
|
<p class="login-box-msg">Đăng nhập để tiếp tục</p>
|
|
|
|
<form action="{{ route('admin_login_action') }}" method="post">
|
|
@csrf
|
|
<div class="form-group has-feedback">
|
|
<input type="email" class="form-control" placeholder="Email" name="email">
|
|
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
|
|
</div>
|
|
<div class="form-group has-feedback">
|
|
<input type="password" class="form-control" placeholder="Mật khẩu" name="password">
|
|
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-8">
|
|
<div class="checkbox icheck">
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /.col -->
|
|
<div class="col-xs-4">
|
|
<button type="submit" class="btn btn-primary btn-block btn-flat">Đăng nhập</button>
|
|
</div>
|
|
<!-- /.col -->
|
|
</div>
|
|
</form>
|
|
|
|
<!-- /.social-auth-links -->
|
|
|
|
</div>
|
|
<!-- /.login-box-body -->
|
|
</div>
|
|
</div>
|
|
<!--/Footer-->
|
|
<script src="{{ asset('/js/sweetalert.min.js') }}"></script>
|
|
|
|
@if ($errors->any())
|
|
<script>
|
|
swal("Thông báo", "{{ $errors->first() }}", "error");
|
|
</script>
|
|
@endif
|
|
|
|
@if (\Session::has('message'))
|
|
<script>
|
|
swal("Thông báo", "{{ \Session::get('message') }}", "{{ \Session::get('status') }}");
|
|
</script>
|
|
@endif
|
|
|
|
</body>
|
|
</html>
|