Files
faveo/resources/views/themes/default1/layouts/login.blade.php
2021-01-28 18:07:18 +05:30

142 lines
4.1 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SUPPORT CENTER</title>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<link rel="shortcut icon" href="{{asset("lb-faveo/media/images/favicon.ico")}}">
<link href="{{asset("lb-faveo/css/bootstrap4.min.css")}}" rel="stylesheet" type="text/css" />
<!-- Font Awesome Icons -->
<link href="{{asset("lb-faveo/css/font-awesome-5.min.css")}}" rel="stylesheet" type="text/css" />
<!-- Theme style -->
<link href="{{asset("lb-faveo/css/client.min.css")}}" rel="stylesheet" type="text/css" />
<link href="{{asset("lb-faveo/css/widgetbox.min.css")}}" rel="stylesheet" type="text/css" />
</head>
<body>
<style type="text/css">
.site-hero {
padding: 35px 0;
padding-top: 1px !important;
background: rgb(0, 154, 186) !important;
}
.breadcrumb {
width: 80%;
margin: 20px 0% !important;
}
.form-helper {margin-bottom: 50px;display: inline-block;}
.alert { width: 100% !important; }
.has-error .form-control { border-color : #dd4b39; }
.help-block { color : #dd4b39; }
.text-red { color: red; }
.btn-primary { background-color:#009aba !important;border-color:#00c0ef !important; }
</style>
<div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner">
<div class="container">
<div id="logo" class="col-md-12 site-logo text-center">
<?php
$company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first();
$system = App\Model\helpdesk\Settings\System::where('id', '=', '1')->first();
?>
@if($system->url)
<a href="{!! $system->url !!}" rel="home">
@else
<a href="{{url('/')}}" rel="home">
@endif
@if($company->use_logo == 1)
<img src="{{asset('uploads/company')}}{{'/'}}{{$company->logo}}" alt="User Image" width="200px" />
@else
@if($system->name)
<h1>{!! $system->name !!}</h1>
@else
<h1><b>SUPPORT</b> CENTER</h1>
@endif
@endif
</a>
</div>
<div id="header-search" class="site-search clearfix"></div>
</div>
</header>
<div class="site-hero clearfix">
<div class="container">
<ol class="breadcrumb breadcrumb-custom">
<li class="text">You are here :</li>
<li class="active" id="active_breadcrumb"></li>
</ol>
</div>
</div>
<div id="main" class="site-main clearfix">
<div class="container">
<div class="content-area">
@yield('body')
</div>
</div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<div class="col-sm-12 text-center">
<div class="site-info">
<p class="text-muted">{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}">{!! $company->company_name !!}</a>. {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a></p>
</div>
</div>
</div>
</footer>
</div>
<script src="{{asset("lb-faveo/js/jquery-3.4.1.min.js")}}" type="text/javascript"></script>
<script src="{{asset("lb-faveo/js/bootstrap4.min.js")}}" type="text/javascript"></script>
<script src="{{asset("lb-faveo/js/client.min.js")}}" type="text/javascript"></script>
<script type="text/javascript">
var locale = window.location.pathname.split('/');
if(locale[locale.length - 3] === 'password'){
document.getElementById('active_breadcrumb').innerText = 'Reset Password';
} else {
document.getElementById('active_breadcrumb').innerText = 'License';
}
</script>
</body>
</html>