Add project

This commit is contained in:
2025-12-01 21:02:58 +01:00
commit 745b10b50f
117 changed files with 11236 additions and 0 deletions

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

@@ -0,0 +1,15 @@
<?php
/**
* @var \App\View\AppView $this
*/
?>
<div class="users form content">
<?= $this->Form->create() ?>
<fieldset>
<legend>Strona logowania</legend>
<?= $this->Form->control('email',['label'=>'Email']) ?>
<?= $this->Form->control('password',['label'=>'Hasło']) ?>
</fieldset>
<?= $this->Form->button('Zaloguj'); ?>
<?= $this->Form->end() ?>
</div>