diskfloppy.me/resources/views/errors/no-auth.blade.php

9 lines
367 B
PHP
Raw Normal View History

2023-07-16 20:02:51 +00:00
@extends('layouts.minimal')
@section('title', 'Error 401: Unauthorized User!')
@section('content')
<h1>Error 401: Unauthorized User!</h1>
2023-07-25 23:08:58 +00:00
<hr>
2023-07-16 20:02:51 +00:00
<p>Woah there! Only authorized users can access this page. Please <a href="/login">log in</a> to proceed.</p>
<p>Ended up here on accident? Click <a href="/">here</a> to return to the homepage</u>!</p>
@stop