mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-12 19:20:45 +02:00

Changed the return link from the root URL ("/") to the specific dashboard URL ("/dashboard") for better navigation.
23 lines
847 B
HTML
23 lines
847 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error - Mining Dashboard</title>
|
|
<!-- Include both Orbitron and VT323 fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=VT323&display=swap" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/error.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-container">
|
|
<h1>ERROR!</h1>
|
|
<div class="error-code">CODE: SYS_EXCEPTION_0x69420</div>
|
|
<p>{{ message }}<span class="terminal-cursor"></span></p>
|
|
<a href="/dashboard" class="btn btn-primary">RETURN TO DASHBOARD</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|