mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
29 lines
903 B
PHP
29 lines
903 B
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\User $user
|
|
*/
|
|
?>
|
|
<nav id="actions-sidebar">
|
|
<ul class="nav-horizontal nav-smaller">
|
|
<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>
|