mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
15 lines
370 B
PHP
15 lines
370 B
PHP
@extends('layouts.app')
|
||
|
||
@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 class="mb-0">403 – Forbidden</h1>
|
||
<p class="mb-0 text-muted lead">You do not have permission to view this page.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
@endsection
|