This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,28 @@
@extends('layouts/basic')
{{-- Page title --}}
@section('title')
403
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div style="padding-top: 200px">
<img src="{{ config('app.url') }}/img/sad-panda.png" style="width: 200px; height: 200px;" class="pull-left">
<div class="error-content">
<h2><i class="fas fa-exclamation-triangle text-yellow"></i> 403 Forbidden.</h2>
<p>
Sad panda. You are not authorized to do the thing. Maybe <a href="{{ config('app.url') }}">return to the dashboard</a>, or contact your administrator.
</p>
</div>
</div>
@stop

View File

@ -0,0 +1,29 @@
@extends('layouts/basic')
{{-- Page title --}}
@section('title')
404
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div style="padding-top: 200px">
<img src="{{ config('app.url') }}/img/sad-panda.png" style="width: 200px; height: 200px;" class="pull-left">
<div class="error-content">
<h2><i class="fas fa-exclamation-triangle text-yellow"></i> 404 Page not found.</h2>
<p>
Sad panda. We could not find the page you were looking for.
You should maybe <a href="{{ config('app.url') }}">return to the dashboard</a>.
</p>
</div>
</div>
@stop

View File

@ -0,0 +1,44 @@
@extends('layouts/basic')
{{-- Page title --}}
@section('title')
{{ trans('general.maintenance_mode_title') }}
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="container">
<div class="row">
<div class="col-md-9 col-md-offset-1">
<div class="box box-warning">
<div class="box-header with-border">
<h1 class="box-title">
<i class="fas fa-exclamation-triangle text-orange" aria-hidden="true"></i>
{{ trans('general.maintenance_mode_title') }}
</h1>
</div><!-- /.box-header -->
<div class="box-body">
<div class="col-md-12">
<div class="col-md-2">
<img src="{{ config('app.url') }}/img/sad-panda.png" class="pull-right" style="width: 140px; height: 140px;">
</div>
<div class="alert alert-warning fade in">
<h2> {{ trans('general.maintenance_mode') }}</h2>
</div>
</div> <!-- /.div -->
</div><!-- /.box-body -->
</div>
</div>
@stop