summaryrefslogtreecommitdiffstats
path: root/app/view/except/default.view.php
blob: 2aa7a735a2cb9816c47a98a7a8eceddc78dd74d7 (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
<!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">Something happened</h1>
            </div>
        </div>

        <?php include "view/master/foot.view.php"; ?>
    </body>
</html>