Files
CakePHP_Repozytorium/templates/Users/login.php
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

20 lines
543 B
PHP

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