mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04: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')
|
@section('form')
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@extends('login')
|
@extends('client_login')
|
||||||
|
|
||||||
@section('form')
|
@section('form')
|
||||||
@include('partials.warn_session', ['redirectTo' => '/client/session_expired'])
|
@include('partials.warn_session', ['redirectTo' => '/client/session_expired'])
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
@extends('login')
|
@extends('client_login')
|
||||||
@section('form')
|
@section('form')
|
||||||
<div class="form-signin">
|
<div class="form-signin">
|
||||||
<h2 class="form-signin-heading">{{ trans('texts.session_expired') }}</h2>
|
<h2 class="form-signin-heading">{{ trans('texts.session_expired') }}</h2>
|
||||||
<hr class="green">
|
<hr class="green">
|
||||||
<div><center>{{ trans('texts.client_session_expired_message') }}</center></div>
|
<div><center>{{ trans('texts.client_session_expired_message') }}</center></div>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
Loading…
x
Reference in New Issue
Block a user