Files
coolify/resources/views/errors/419.blade.php
T
Andras Bacsai e4fa2b6964 fix(ui): polish mobile layouts, error pages, and volume backups
Keep error pages full-viewport, lift the unsaved bar above the
mobile keyboard, make status/heading layouts stack cleanly on small
screens, route service DB backups to volume-backups, and tighten
volume backup grid/forms. Cover with feature tests.
2026-08-06 21:29:26 +02:00

25 lines
1.1 KiB
PHP

@extends('layouts.base')
@section('body')
<body class="error-page-body text-black dark:text-inherit">
<x-toast />
<x-error-page
code="419"
title="This page is definitely old, not like you!"
description="Your session has expired. Please log in again to continue."
:show-go-back="false"
:show-dashboard="false"
primary-href="/login"
primary-label="Back to login">
<details>
<summary>Using a reverse proxy or Cloudflare Tunnel?</summary>
<ul>
<li>Set your domain in <strong>Settings &rarr; FQDN</strong> to match the URL you use to access Coolify.</li>
<li>Cloudflare users: disable <strong>Browser Integrity Check</strong> and <strong>Under Attack Mode</strong> for your Coolify domain, as these can interrupt login sessions.</li>
<li>If you can still access Coolify via <code>localhost</code>, log in there first to configure your FQDN.</li>
</ul>
</details>
</x-error-page>
</body>
@endsection