Add project

This commit is contained in:
2025-12-01 21:02:58 +01:00
commit 745b10b50f
117 changed files with 11236 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* @var \App\View\AppView $this
* @var string $message
* @var string $url
*/
use Cake\Core\Configure;
// ...existing code...
?>
<h2><?= h($message) ?></h2>
<p class="error">
<strong>Błąd: </strong>
Żądany adres <?= "<strong>'{$url}'</strong>" ?> nie został odnaleziony na tym serwerze.
</p>

View File

@@ -0,0 +1,16 @@
<?php
/**
* @var \App\View\AppView $this
* @var string $message
* @var string $url
*/
use Cake\Core\Configure;
use Cake\Error\Debugger;
// ...existing code...
?>
<h2>Wystąpił błąd wewnętrzny.</h2>
<p class="error">
<strong>Błąd: </strong>
<?= h($message) ?>
</p>