24 lines
512 B
PHP
24 lines
512 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\User */
|
|
|
|
$this->title = Yii::t('app', 'Új felhasználó');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Felhasználók'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="user-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
'accounts' => $accounts,
|
|
'trainers' => $trainers,
|
|
]) ?>
|
|
|
|
</div>
|