blob: 7a687e56e988acc74631ae16c18f7ebd60f34a4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html lang="en">
<head>
<?php include "view/master/head.view.php"; ?>
<title>Scrott - Application Exception</title>
<style type="text/css">
body { padding-top: 50px; }
</style>
</head>
<body>
<?php include "view/master/topp.view.php"; ?>
<div class="container">
<div class="jumbotron">
<h1 class="text-center">Scrott derped</h1>
<h5 class="text-center">System internals reported this:</h5>
<div class="well well-sm text-center text-danger">
<h3><?=$mod->message?></h3>
</div>
</div>
</div>
<?php include "view/master/foot.view.php"; ?>
</body>
</html>
|