Update error pages

This commit is contained in:
Daniel Supernault 2019-07-07 22:16:32 -06:00
parent f6663c7ded
commit 7282e42891
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
3 changed files with 9 additions and 23 deletions

View file

@ -2,13 +2,9 @@
@section('content')
<div class="container">
<div class="error-page py-5 my-5">
<div class="card mx-5">
<div class="card-body p-5 text-center">
<h1>Page Not Found</h1>
<img src="/img/fred1.gif" class="img-fluid">
</div>
</div>
<div class="error-page py-5 my-5 text-center">
<h3 class="font-weight-bold">Sorry, this page isn't available.</h3>
<p class="lead">The link you followed may be broken, or the page may have been removed. <a href="/">Go back to Pixelfed.</a></p>
</div>
</div>
@endsection

View file

@ -2,14 +2,9 @@
@section('content')
<div class="container">
<div class="error-page py-5 my-5">
<div class="card mx-5">
<div class="card-body p-5 text-center">
<h1>Whoops! Something went wrong.</h1>
<p class="mb-0 text-muted lead">If you keep seeing this message, please contact an admin.</p>
<img src="/img/fred1.gif" class="img-fluid">
</div>
</div>
<div class="error-page py-5 my-5 text-center">
<h3 class="font-weight-bold">Something went wrong</h3>
<p class="lead">We cannot process your request at this time, please try again later. <a href="/">Go back to Pixelfed.</a></p>
</div>
</div>
@endsection

View file

@ -2,14 +2,9 @@
@section('content')
<div class="container">
<div class="error-page py-5 my-5">
<div class="card mx-5">
<div class="card-body p-5 text-center">
<h1>Service Unavailable</h1>
<p class="mb-0 text-muted lead">Our services are in maintenance mode, please try again later.</p>
<img src="/img/fred1.gif" class="img-fluid">
</div>
</div>
<div class="error-page py-5 my-5 text-center">
<h3 class="font-weight-bold">Service Unavailable</h3>
<p class="lead">Our service is in maintenance mode, please try again later. <a href="/">Go back to Pixelfed.</a></p>
</div>
</div>
@endsection