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

19
templates/Users/login.php Normal file
View File

@@ -0,0 +1,19 @@
<div class="users form content">
<?= $this->Form->create() ?>
<fieldset>
<legend><?= __('Strona logowania') ?></legend>
<?= $this->Form->control('email', [
'label' => 'Nazwa użytkownika',
'placeholder' => 'Wpisz swoją nazwę użytkownika'
]) ?>
<?= $this->Form->control('password', [
'label' => 'Hasło',
'placeholder' => 'Wpisz hasło'
]) ?>
</fieldset>
<?= $this->Form->button(__('Zaloguj')) ?>
<?= $this->Form->end() ?>
</div>