mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
29 lines
918 B
PHP
29 lines
918 B
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\User $user
|
|
*/
|
|
?>
|
|
<nav class="large-3 medium-4 columns" id="actions-sidebar">
|
|
<ul class="side-nav">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Html->link(__('List Users'), ['action' => 'index']) ?></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="users form large-9 medium-8 columns content">
|
|
<?= $this->Form->create($user) ?>
|
|
<fieldset>
|
|
<legend><?= __('Add User') ?></legend>
|
|
<?php
|
|
echo $this->Form->control('email');
|
|
echo $this->Form->control('first_name');
|
|
echo $this->Form->control('last_name');
|
|
echo $this->Form->control('password');
|
|
echo $this->Form->control('email_checked');
|
|
echo $this->Form->control('language');
|
|
?>
|
|
</fieldset>
|
|
<?= $this->Form->button(__('Submit')) ?>
|
|
<?= $this->Form->end() ?>
|
|
</div>
|