diff options
author | Malf Furious <m@lfurio.us> | 2016-06-10 00:43:48 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-06-10 00:43:48 -0400 |
commit | f1bde0978d918b59314777a2e14cde0694f4c43e (patch) | |
tree | 64462916c7a58f6a3be69827beff0d3ef7018cc4 /app | |
parent | 364d84a18de60459a9d2844cd0c13db140c9b3d1 (diff) | |
download | scrott-f1bde0978d918b59314777a2e14cde0694f4c43e.tar.gz scrott-f1bde0978d918b59314777a2e14cde0694f4c43e.zip |
Add 'go home' button to exception page
Diffstat (limited to 'app')
-rw-r--r-- | app/view/except/default.view.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/view/except/default.view.php b/app/view/except/default.view.php index 8738a37..01cf123 100644 --- a/app/view/except/default.view.php +++ b/app/view/except/default.view.php @@ -28,13 +28,17 @@ <?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="jumbotron text-center"> + <h1>Scrott derped</h1> + <h5>System internals reported this:</h5> - <div class="well well-sm text-center text-danger"> + <div class="well well-sm text-danger"> <h3><?=$mod->message?></h3> </div> + + <a href="<?=$mod->ar()?>/" class="btn btn-primary btn-lg"> + <span class="glyphicon glyphicon-pencil"></span> Go to Scrott Dashboard + </a> </div> </div> |