Files
Tomasz_Kawa_cakePHP_180069/templates/Users/login.php
T_Kawa af171ef107
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled
Initial commit: CakePHP project
2025-12-01 19:40:46 +01:00

16 lines
430 B
PHP

<?php
/**
* @var \App\View\AppView $this
*/
?>
<div class="users form content">
<?= $this->Form->create() ?>
<fieldset>
<legend><?= __('Strona Logowania') ?></legend>
<?= $this->Form->control('email',['label'=>'Nazwa użytkownika']) ?>
<?= $this->Form->control('password',['label'=>'Hasło']) ?>
</fieldset>
<?= $this->Form->button(__('Zaloguj')); ?>
<?= $this->Form->end() ?>
</div>