1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Refinements to the login and client portal

This commit is contained in:
Hillel Coren 2017-02-21 11:19:28 +02:00
parent c979ed9951
commit ae94e7d42b
5 changed files with 10 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -28,8 +28,8 @@ html {
font-weight: 500;
font-size: 15px;
font-weight: bold;
padding-left: 20px;
padding-right: 20px;
margin-left: 16px !important;
margin-right: 16px !important;
}
.navbar {

View File

@ -16,11 +16,13 @@
@endsection
@section('body')
@if (!Utils::isWhiteLabel() || empty($clientauth))
@if (!Utils::isWhiteLabel())
<div class="container-fluid">
<div class="row header">
<div class="col-md-6 col-xs-12 text-center">
<a><img width="231" src="{{ asset('images/invoiceninja-logox53.png') }}"/></a>
<a href="https://www.invoiceninja.com/" target="_blank">
<img width="231" src="{{ asset('images/invoiceninja-logox53.png') }}"/>
</a>
</div>
<div class="col-md-6 text-right visible-lg">
<p>{{trans('texts.ninja_tagline')}}</p>

View File

@ -78,7 +78,7 @@
@if (isset($account) && $account->enable_client_portal)
<ul class="nav navbar-nav navbar-right">
@if (isset($account) && $account->enable_client_portal_dashboard)
<li {!! Request::is('*client/dashboard') ? 'class="active"' : '' !!}>
<li {!! Request::is('*client/dashboard*') ? 'class="active"' : '' !!}>
{!! link_to('/client/dashboard', trans('texts.dashboard') ) !!}
</li>
@endif