Initial commit for main repository
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled

This commit is contained in:
Patryk_Turbakiewicz
2025-11-28 14:33:55 +01:00
commit ab9076a87b
124 changed files with 11209 additions and 0 deletions

11
templates/Users/add.php Normal file
View File

@@ -0,0 +1,11 @@
<div class="users form content">
<h3>Dodaj nowego użytkownika</h3>
<?= $this->Form->create($user) ?>
<fieldset>
<?= $this->Form->control('name', ['label' => 'Imię i nazwisko']) ?>
<?= $this->Form->control('email', ['label' => 'Email']) ?>
<?= $this->Form->control('password', ['label' => 'Hasło']) ?>
</fieldset>
<?= $this->Form->button(__('Dodaj')) ?>
<?= $this->Form->end() ?>
</div>