coolify/resources/views/errors/419.blade.php

19 lines
809 B
PHP
Raw Normal View History

@extends('layouts.base')
2024-03-26 09:44:52 +00:00
<div class="flex flex-col items-center justify-center h-full">
<div>
<p class="font-mono font-semibold text-7xl dark:text-warning">419</p>
<h1 class="mt-4 font-bold tracking-tight dark:text-white">This page is definitely old, not like you!</h1>
2026-02-24 09:17:16 +00:00
<p class="text-base leading-7 dark:text-neutral-300 text-black">Your session has expired. Please log in again to continue.
2024-03-26 09:44:52 +00:00
</p>
<div class="flex items-center mt-10 gap-x-2">
2026-02-24 09:17:16 +00:00
<a href="/login">
<x-forms.button>Back to Login</x-forms.button>
2024-03-26 09:44:52 +00:00
</a>
2024-11-12 14:18:48 +00:00
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
2024-03-26 09:44:52 +00:00
support
<x-external-link />
</a>
2023-06-15 11:28:16 +00:00
</div>
</div>
</div>