126 lines
6.0 KiB
PHP
126 lines
6.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="{{ $favicon ?? url('assets/images/logo/logo.png') }}" type="image/x-icon">
|
|
<title>Login</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ asset('assets/css/main/app.css') }}">
|
|
<link rel="stylesheet" href=" {{ asset('assets/css/pages/auth.css') }}">
|
|
<script src="{{asset('assets/js/jquery.min.js')}}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="auth" class="login_bg" style="background-image: url('{{$login_bg_image??''}}');">
|
|
<img src="{{$login_bg_image ?? ''}}" data-custom-image="{{asset('assets/images/bg/login.jpg')}}" alt="" style="display: none" id="bg_image">
|
|
<div class="justify-content-md-end justify-content-sm-center login-box d-flex align-items-center">
|
|
<div class="col-lg-3 col-12 card" id="auth-box">
|
|
<div class="auth-logo mb-5 d-block">
|
|
<img id="company_logo" src="{{ $company_logo ?? '' }}" data-custom-image="{{asset('assets/images/logo/sidebar_logo.png')}}" alt="Logo">
|
|
</div>
|
|
<div class="center mtop-75">
|
|
<div class='login_heading'>
|
|
<h3>{{__("Hi, Welcome Back!") }}</h3>
|
|
<p>{{__("Enter your details to sign in to your account.") }}</p>
|
|
</div>
|
|
|
|
<div class="pt-4">
|
|
<form method="POST" action="{{ route('login') }}" id="frmLogin">
|
|
@csrf
|
|
<div class="form-group position-relative form-floating mb-4">
|
|
<input id="email" type="email" placeholder="{{__("Email")}}" class="form-control login-border form-input @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
|
|
<label for="email">{{__("Email address")}}</label>
|
|
@error('email')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
|
|
</div>
|
|
|
|
<div class="form-group position-relative form-floating has-icon-right mb-4"
|
|
id="pwd">
|
|
<input id="password" type="password" placeholder="Password" class="form-control login-border form-input @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
|
|
<label for="password">{{__("Password") }}</label>
|
|
@error('password')
|
|
<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span>
|
|
@enderror
|
|
<div class="form-control-icon icon-right">
|
|
<i class="bi bi-eye" id='toggle_pass'></i>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-primary btn-block btn-sm shadow-lg mt-3 login_btn">{{__("Log in") }}</button>
|
|
@if (config('app.demo_mode'))
|
|
<div class="text-danger text-center mt-2" role="alert">
|
|
{{__("If you cannot login, then Click Here.") }}
|
|
<br><a class="text-decoration-underline" target="_blank" href="{{Request::root()}}">{{Request::root()}}</a>
|
|
</div>
|
|
@endif
|
|
@if (config('app.demo_mode'))
|
|
<div class="row mt-3">
|
|
<hr class="w-100">
|
|
<div class="col-12 text-center text-black-50">{{__("Demo Credentials") }}</div>
|
|
</div>
|
|
|
|
<div class="row mt-3">
|
|
<div class="col-md-6">
|
|
<button class="btn w-100 btn-info mt-2" id="admin_btn">{{__("Admin") }}</button>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<button class="btn w-100 btn-info mt-2" id="staff_btn">{{__("Staff") }}</button>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$("#toggle_pass").on('click', function () {
|
|
$(this).toggleClass("bi bi-eye bi-eye-slash");
|
|
let input = $('[name="password"]');
|
|
if (input.attr("type") == "password") {
|
|
input.attr("type", "text");
|
|
} else {
|
|
input.attr("type", "password");
|
|
}
|
|
});
|
|
|
|
$('#bg_image').on('error', function () {
|
|
this.src = $(this).data('custom-image');
|
|
$('.login_bg').css('background-image', "url(" + $(this).data('custom-image') + ")");
|
|
});
|
|
$('#company_logo').on('error', function () {
|
|
this.src = $(this).data('custom-image');
|
|
});
|
|
|
|
@if (config('app.demo_mode'))
|
|
// Super admin panel
|
|
$('#admin_btn').on('click', function () {
|
|
$('#email').val('admin@gmail.com');
|
|
$('#password').val('admin123');
|
|
$('.login_btn').attr('disabled', true);
|
|
$(this).attr('disabled', true);
|
|
$('#frmLogin').submit();
|
|
})
|
|
|
|
$('#staff_btn').on('click', function () {
|
|
$('#email').val('staff@gmail.com');
|
|
$('#password').val('Staff@123');
|
|
$('.login_btn').attr('disabled', true);
|
|
$(this).attr('disabled', true);
|
|
$('#frmLogin').submit();
|
|
})
|
|
|
|
@endif
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|