mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
Don't show logo on client login
This commit is contained in:
parent
2d0f77448a
commit
31bf477477
19
resources/views/client_login.blade.php
Normal file
19
resources/views/client_login.blade.php
Normal 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
|
@ -1,4 +1,4 @@
|
||||
@extends('login')
|
||||
@extends('client_login')
|
||||
|
||||
@section('form')
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
@extends('login')
|
||||
@extends('client_login')
|
||||
|
||||
@section('form')
|
||||
@include('partials.warn_session', ['redirectTo' => '/client/session_expired'])
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user