Minor display fixes, link to old site
This commit is contained in:
27
resources/views/errors/307.blade.php
Normal file
27
resources/views/errors/307.blade.php
Normal file
@@ -0,0 +1,27 @@
|
||||
@extends('adminlte::layouts.errors')
|
||||
|
||||
@section('htmlheader_title')
|
||||
{{ trans('adminlte_lang::message.servererror') }}
|
||||
@endsection
|
||||
|
||||
@section('main-content')
|
||||
<div class="error-page">
|
||||
<h2 class="headline text-red">307</h2>
|
||||
<div class="error-content">
|
||||
<h3><i class="fa fa-warning text-red"></i> Oops! Not updated yet!</h3>
|
||||
<p>
|
||||
That data is still on the old site. You'll be redirected in <b>5</b> seconds.<br>
|
||||
(You might be asked to login again.) <br>
|
||||
Here: <a href="{{ $exception->getMessage() }}"><b>{{ $exception->getMessage() }}</b></a><br>
|
||||
Back to <a href="{{ url('home') }}">home</a>
|
||||
</p>
|
||||
<br>
|
||||
</div>
|
||||
</div><!-- /.error-page -->
|
||||
|
||||
<script type="text/javascript">
|
||||
setTimeout(function () {
|
||||
window.location.href = '{{ $exception->getMessage() }}';
|
||||
}, 5000);
|
||||
</script>
|
||||
@append
|
Reference in New Issue
Block a user