chore: update error production.view.php template
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name='robots' content='noindex, nofollow, noarchive'/>
|
||||
<title>Fehler</title>
|
||||
<style>
|
||||
:root {
|
||||
@@ -37,8 +38,6 @@
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 600px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.error-container {
|
||||
@@ -70,10 +69,12 @@
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.error-meta {
|
||||
font-size: 0.9rem;
|
||||
color: #6c757d;
|
||||
margin-top: 20px;
|
||||
.error-footer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
padding: 20px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
@@ -84,23 +85,27 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="error-container">
|
||||
<div class="error-header">
|
||||
<h1 class="error-title">Ein Fehler ist aufgetreten</h1>
|
||||
</div>
|
||||
<main class="container" role="main">
|
||||
<section class="error-container" aria-live="assertive">
|
||||
<header class="error-header">
|
||||
<h1 class="error-title">Uups, da ist etwas schiefgelaufen</h1>
|
||||
</header>
|
||||
|
||||
<div class="error-body">
|
||||
<div class="error-message">
|
||||
Es tut uns leid, aber es ist ein Fehler aufgetreten.
|
||||
Unser Team wurde benachrichtigt und arbeitet an einer Lösung.
|
||||
</div>
|
||||
|
||||
<div class="error-meta">
|
||||
Request ID: {{requestId}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="error-footer">
|
||||
<button onclick="location.reload();">Neu Laden</button>
|
||||
|
||||
<a href="/" title="Zur Startseite">Startseite</a>
|
||||
|
||||
<button onclick="history.back();">Zurück</button>
|
||||
</footer>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user