aboutsummaryrefslogtreecommitdiff
path: root/templates/error.html.php
blob: db2f233fb10dcf3cc743a53f3a9f4e6e4f2b1836 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div style="width: 60%; margin: 30px auto">

    <h1>Something went wrong</h1>
    <br>
    <?= e($message) ?>
    <br>
    <br>

    <?php if (isset($stacktrace)): ?>
        <?php foreach ($stacktrace as $frame) : ?>
            <code>
                <?= e($frame) ?>
            </code>
            <br>
        <?php endforeach; ?>
    <?php endif; ?>

</div>