Files
HexaHost-Panel/resources/views/vms/console-error.blade.php
2026-05-17 13:26:14 +02:00

16 lines
603 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Konsole Fehler</title>
@vite(['resources/css/app.css'])
</head>
<body class="flex min-h-screen items-center justify-center bg-slate-950 text-slate-100">
<div class="max-w-md rounded-xl border border-red-800 bg-slate-900 p-8 text-center">
<h1 class="text-lg font-semibold text-red-400">Konsole nicht verfügbar</h1>
<p class="mt-4 text-sm text-slate-400">{{ $error }}</p>
<a href="{{ route('vms.show', $vm) }}" class="mt-6 inline-block text-cyan-400 hover:underline"> Zurück</a>
</div>
</body>
</html>