22 lines
729 B
PHP
Executable file
22 lines
729 B
PHP
Executable file
@extends('Layouts.layout')
|
|
@section('Title', '401 - Unauthorized Access')
|
|
@section('css')
|
|
<link href="{{ asset('/css/unauthorizedAccess.css') }}" rel="stylesheet">
|
|
@stop
|
|
@section('Content')
|
|
|
|
<div class="main">
|
|
<div class='card'>
|
|
<img class="unauthorized" src="{{asset('assets/unauthorized.png')}}" alt="Teams logo">
|
|
<div class='card-details'>
|
|
<h1>401</h1>
|
|
<h3>You do not have authorization to access this page.</h3>
|
|
<h6>If you need assistance, please contact your supervisor.</h6>
|
|
<p> Return to <a href="{{ url()->previous() }}">previous page</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
@stop
|
|
|