Added andom-tec Layout package

This commit is contained in:
Frank Schubert
2021-12-14 18:56:39 +01:00
parent 5f21e9fef6
commit 6cd9c688db
49 changed files with 7722 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>mvcfronk Error 404 - Module not found</title>
</head>
<body>
<h1>Error 404</h1>
<h3>The Module was not found</h3>
<!-- <?=$Exception?> -->
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>500 - Internal application error</title>
</head>
<body>
<h1>Error 500</h1>
<h3>An internal Error occured.</h3>
<!-- <?=$Exception?> -->
</body>
</html>

View File

@@ -0,0 +1,7 @@
<?php
$code=$Exception->Code;
if($code) {
echo "Error $code: ";
}
echo $Exception->Message;
echo "\n";

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>Error</title>
</head>
<body>
<h3><?=$Exception?></h3>
</body>
</html>