36 lines
1.1 KiB
Handlebars
36 lines
1.1 KiB
Handlebars
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{{!--<title>Order Summary</title> --}}
|
|
{{> styles}}
|
|
<style>
|
|
pre {
|
|
background-color: #f8f9fa;
|
|
color: #d63384;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
white-space: pre-wrap;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
{{!-- <link rel="stylesheet" href="styles/styles.css" /> --}}
|
|
</head>
|
|
<body>
|
|
<h3>{{plant}},<br/> Has encountered an error.</h1>
|
|
<p>
|
|
The below error came from Module: {{module}}, Submodule: {{submodule}}.
|
|
</p>
|
|
<p>The error below is considered to be critical and should be addressed</p>
|
|
<hr/>
|
|
<div>
|
|
<h3>Error Message: </h3>
|
|
<p>{{message}}</p>
|
|
</div>
|
|
<hr/>
|
|
<div>
|
|
<h3>Stack trace</h3>
|
|
<pre>{{{error}}}</pre>
|
|
</div>
|
|
</body>
|
|
</html> |