%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/components/ |
Upload File : |
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" sizes="16x16" href="{{ $globalSetting->favicon_url }}">
<link rel="manifest" href="{{ $globalSetting->favicon_url }}">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="{{ $globalSetting->favicon_url }}">
<meta name="theme-color" content="#ffffff">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="{{ asset('vendor/css/all.min.css') }}">
<!-- Template CSS -->
<link href="{{ asset('vendor/froiden-helper/helper.css') }}" rel="stylesheet">
<link type="text/css" rel="stylesheet" media="all" href="{{ asset('css/main.css') }}">
<title>{{ $globalSetting->global_app_name }}</title>
@stack('styles')
<script src="{{ asset('vendor/jquery/jquery.min.js') }}"></script>
<style>
.login_header {
background-color: {{ $globalSetting->logo_background_color }} !important;
}
</style>
@include('sections.theme_css')
@if(file_exists(public_path().'/css/login-custom.css'))
<link href="{{ asset('css/login-custom.css') }}" rel="stylesheet">
@endif
@if ($globalSetting->sidebar_logo_style == 'full')
<style>
.login_header img {
max-width: unset;
}
</style>
@endif
</head>
<body class="{{ $globalSetting->auth_theme == 'dark' ? 'dark-theme' : '' }}">
<header class="sticky-top d-flex justify-content-center align-items-center login_header bg-white px-4">
<img class="mr-2 rounded" src="{{ $globalSetting->logo_url }}" alt="Logo"/>
@if ($globalSetting->sidebar_logo_style != 'full')
{{-- <h3 class="mb-0 pl-1 {{ $globalSetting->auth_theme_text == 'light' ? ($globalSetting->auth_theme == 'dark' ? 'text-dark' : 'text-white') : '' }}">{{ $globalSetting->global_app_name ?? $globalSetting->app_name }}</h3>--}}
@endif
</header>
<section class="bg-grey py-5 login_section" @if ($globalSetting->login_background_url) style="background: url('{{ $globalSetting->login_background_url }}') center center/cover no-repeat;" @endif>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="login_box mx-auto rounded bg-white text-center">
{{ $slot }}
</div>
{{ $outsideLoginBox ?? '' }}
@if($languages->count() >1)
<div class="my-3 d-flex flex-column flex-grow-1">
<div class="align-items-center flex-grow-1">
@foreach($languages as $language)
<span class="my-10 f-12 mx-1 ">
<a href="javascript:;" class="text-dark-grey my-2 change-lang"
data-lang="{{$language->language_code}}">
<span
class='flag-icon flag-icon-{{ ($language->flag_code == 'en') ? 'gb' : $language->flag_code }} flag-icon-squared'></span>
{{\App\Models\LanguageSetting::LANGUAGES_TRANS[$language->language_code] ?? $language->language_name}}
</a>
</span>
@endforeach
</div>
</div>
@endif
</div>
</div>
</div>
</section>
<!-- Global Required Javascript -->
<script src="{{ asset('vendor/bootstrap/javascript/bootstrap-native.js') }}"></script>
<!-- Font Awesome -->
<script src="{{ asset('vendor/jquery/all.min.js') }}"></script>
<!-- Template JS -->
<script src="{{ asset('js/main.js') }}"></script>
<script>
document.loading = '@lang('app.loading')';
const MODAL_DEFAULT = '#myModalDefault';
const MODAL_LG = '#myModal';
const MODAL_XL = '#myModalXl';
const MODAL_HEADING = '#modelHeading';
const RIGHT_MODAL = '#task-detail-1';
const RIGHT_MODAL_CONTENT = '#right-modal-content';
const RIGHT_MODAL_TITLE = '#right-modal-title';
const dropifyMessages = {
default: "@lang('app.dragDrop')",
replace: "@lang('app.dragDropReplace')",
remove: "@lang('app.remove')",
error: "@lang('messages.errorOccured')",
};
$('.change-lang').click(function (event) {
const locale = $(this).data("lang");
event.preventDefault();
let url = "{{ route('front.changeLang', ':locale') }}";
url = url.replace(':locale', locale);
$.easyAjax({
url: url,
container: '#login-form',
blockUI:true,
type: "GET",
success: function (response) {
if (response.status === 'success') {
window.location.reload();
}
}
})
});
</script>
{{ $scripts }}
</body>
</html>