Files
Patryk_Turbakiewicz ab9076a87b
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled
Initial commit for main repository
2025-11-28 14:33:55 +01:00

12 lines
437 B
PHP

<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>