summaryrefslogtreecommitdiff
path: root/core/views/welcome_syscheck.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/welcome_syscheck.html.php')
-rw-r--r--core/views/welcome_syscheck.html.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/core/views/welcome_syscheck.html.php b/core/views/welcome_syscheck.html.php
new file mode 100644
index 00000000..c87c4763
--- /dev/null
+++ b/core/views/welcome_syscheck.html.php
@@ -0,0 +1,49 @@
+<? defined("SYSPATH") or die("No direct script access."); ?>
+<html>
+ <head>
+ <title>Gallery3 Scaffold</title>
+ <style>
+ body {
+ font-family: Trebuchet MS;
+ }
+
+ p {
+ margin: 0 0 0 0;
+ padding: 5px;
+ }
+
+ pre {
+ margin: 0;
+ padding-left: 1em;
+ }
+
+ .error {
+ color: red;
+ }
+
+ div.block {
+ border: 1px solid black;
+ margin-bottom: 5px;
+ paddding: 1em;
+ }
+ </style>
+ </head>
+ <body>
+ <? foreach ($errors as $error): ?>
+ <div class="block">
+ <p class="error">
+ <?= $error->message ?>
+ </p>
+ <? foreach ($error->instructions as $line): ?>
+ <pre><?= $line ?></pre>
+ <? endforeach ?>
+
+ <? if (!empty($error->message2)): ?>
+ <p class="error">
+ <?= $error->message2 ?>
+ </p>
+ <? endif ?>
+ </div>
+ <? endforeach ?>
+ </body>
+</html>