mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
error
layout
This commit is contained in:
parent
ad44053546
commit
86e069d823
26
resources/views/portal/ninja2020/layout/error.blade.php
Normal file
26
resources/views/portal/ninja2020/layout/error.blade.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
@extends('portal.ninja2020.layout.clean')
|
||||||
|
@section('meta_title', $__env->yieldContent('title'))
|
||||||
|
|
||||||
|
@section('body')
|
||||||
|
<div class="grid lg:grid-cols-3">
|
||||||
|
<div class="hidden lg:block col-span-1 bg-red-100 h-screen">
|
||||||
|
<img src="{{ asset('images/client-portal-new-image.jpg') }}"
|
||||||
|
class="w-full h-screen object-cover"
|
||||||
|
alt="Background image">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-span-2 h-screen flex">
|
||||||
|
<div class="m-auto md:w-1/2 lg:w-1/4 flex flex-col items-center">
|
||||||
|
<span class="flex items-center text-2xl">
|
||||||
|
@yield('code') — @yield('message')
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<a class="button-link text-sm mt-2" href="{{ request()->getSchemeAndHttpHost() }}">
|
||||||
|
{{ ctrans('texts.back_to', ['url' => parse_url(request()->getHttpHost())['host'] ?? request()->getHttpHost()]) }}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user