raspap-webgui-mirror/templates/exception.php
2023-12-27 05:35:41 +00:00

25 lines
710 B
PHP
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="dist/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="dist/sb-admin-2/css/sb-admin-2.min.css" rel="stylesheet">
</head>
<body id="page-top">
<div id="wrapper">
<div id="content-wrapper" class="d-flex flex-column">
<div id="content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3 class="mt-3"><?php echo _("An exception occurred"); ?></h3>
<pre><?php print_r($trace); ?></pre>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>