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

Don't show logo on client login

This commit is contained in:
Hillel Coren 2018-05-13 22:50:35 +03:00
parent 7515182199
commit cebe130ee0
4 changed files with 23 additions and 4 deletions

View File

@ -0,0 +1,19 @@
@extends('master')
@section('head')
@if (!empty($clientauth) && $fontsUrl = Utils::getAccountFontsUrl())
<link href="{{ $fontsUrl }}" rel="stylesheet" type="text/css">
@endif
<link href="{{ asset('css/built.public.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/bootstrap.min.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/built.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/built.login.css') }}?no_cache={{ NINJA_VERSION }}" rel="stylesheet" type="text/css"/>
@if (!empty($clientauth))
<style type="text/css">{!! Utils::clientViewCSS() !!}</style>
@endif
@endsection
@section('body')
@yield('form')
@endsection

View File

@ -1,4 +1,4 @@
@extends('login')
@extends('client_login')
@section('form')

View File

@ -1,4 +1,4 @@
@extends('login')
@extends('client_login')
@section('form')
@include('partials.warn_session', ['redirectTo' => '/client/session_expired'])

View File

@ -1,8 +1,8 @@
@extends('login')
@extends('client_login')
@section('form')
<div class="form-signin">
<h2 class="form-signin-heading">{{ trans('texts.session_expired') }}</h2>
<hr class="green">
<div><center>{{ trans('texts.client_session_expired_message') }}</center></div>
</div>
@endsection
@endsection