mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Basic template implementation
This commit is contained in:
parent
adf44d462b
commit
41bba09f42
2 changed files with 12 additions and 5 deletions
|
@ -23,7 +23,6 @@
|
||||||
* as you leave these references intact in the header comments of your source files.
|
* as you leave these references intact in the header comments of your source files.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
require 'includes/csrf.php';
|
require 'includes/csrf.php';
|
||||||
ensureCSRFSessionToken();
|
ensureCSRFSessionToken();
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,18 @@
|
||||||
<link href="dist/sb-admin-2/css/sb-admin-2.min.css" rel="stylesheet">
|
<link href="dist/sb-admin-2/css/sb-admin-2.min.css" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body id="page-top">
|
<body id="page-top">
|
||||||
<div class="row">
|
<div id="wrapper">
|
||||||
<div class="col-lg-12">
|
<div id="content-wrapper" class="d-flex flex-column">
|
||||||
<h3 class="mt-3"><?php echo _("An exception occurred"); ?></h3>
|
<div id="content">
|
||||||
<?php echo '<pre>'; print_r($trace); echo '</pre>'; ?>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue