From c003600effc33db5eef3bb41d8715a3c9daf04b2 Mon Sep 17 00:00:00 2001
From: Malf Furious <m@lfurio.us>
Date: Wed, 17 Feb 2016 20:29:11 -0500
Subject: Add 'Except' MVC -- Used to show application exception messages to
 user

This MVC should be triggered by the root controller if normal routines throw an exception and should pass the exception message to the Except controller.
---
 app/view/except/default.view.php | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 app/view/except/default.view.php

(limited to 'app/view/except')

diff --git a/app/view/except/default.view.php b/app/view/except/default.view.php
new file mode 100644
index 0000000..2aa7a73
--- /dev/null
+++ b/app/view/except/default.view.php
@@ -0,0 +1,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>
-- 
cgit v1.2.3