added views and Authclients
This commit is contained in:
20
lib/User/resources/views/admin/_user.php
Normal file
20
lib/User/resources/views/admin/_user.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Dektrium project.
|
||||
*
|
||||
* (c) Dektrium project <http://github.com/dektrium>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE.md
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @var yii\widgets\ActiveForm $form
|
||||
* @var dektrium\user\models\User $user
|
||||
*/
|
||||
?>
|
||||
|
||||
<?= $form->field($user, 'email')->textInput(['maxlength' => 255]) ?>
|
||||
<?= $form->field($user, 'username')->textInput(['maxlength' => 255]) ?>
|
||||
<?= $form->field($user, 'password')->passwordInput() ?>
|
||||
Reference in New Issue
Block a user