mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-25 06:27:14 +00:00
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.
25 lines
1.1 KiB
PHP
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 → 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
|