mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
598 B
PHP
19 lines
598 B
PHP
<?php
|
|
|
|
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
?>
|
|
<div class="users form large-6 medium-8 columns content center">
|
|
<?= $this->Flash->render() ?>
|
|
<?= $this->Form->create() ?>
|
|
<fieldset>
|
|
<legend><?= __('Please enter your username and password') ?></legend>
|
|
<?= $this->Form->control('username') ?>
|
|
<?= $this->Form->control('password') ?>
|
|
</fieldset>
|
|
<?= $this->Form->button(__('Login')); ?>
|
|
<?= $this->Form->end() ?>
|
|
</div>
|