mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
24 lines
370 B
HTML
24 lines
370 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/_errors/main.css"/>
|
|
<title>Status $ERROR_CODE - %{HOSTNAME}</title>
|
|
<style>
|
|
html{
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
body{
|
|
color: #fefefe;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="error-middle">
|
|
<h1>Status $ERROR_CODE - $ERROR_NAME</h1>
|
|
<p>$ERROR_DESC</p>
|
|
</div>
|
|
</body>
|
|
</html>
|