1 <div
class=
"wide form">
3 <?php
$form = $this->beginWidget(
'CActiveForm', array(
4 'action' => Yii::app()->createUrl($this->route),
9 <?php echo
$form->label($model,
'id'); ?>
10 <?php echo
$form->textField($model,
'id'); ?>
14 <?php echo
$form->label($model,
'username'); ?>
15 <?php echo
$form->textField($model,
'username', array(
'size' => 20,
'maxlength' => 20)); ?>
19 <?php echo
$form->label($model,
'email'); ?>
20 <?php echo
$form->textField($model,
'email', array(
'size' => 60,
'maxlength' => 128)); ?>
24 <?php echo
$form->label($model,
'activkey'); ?>
25 <?php echo
$form->textField($model,
'activkey', array(
'size' => 60,
'maxlength' => 128)); ?>
29 <?php echo
$form->label($model,
'create_at'); ?>
30 <?php echo
$form->textField($model,
'create_at'); ?>
34 <?php echo
$form->label($model,
'lastvisit_at'); ?>
35 <?php echo
$form->textField($model,
'lastvisit_at'); ?>
39 <?php echo
$form->label($model,
'superuser'); ?>
40 <?php echo
$form->dropDownList($model,
'superuser', $model->itemAlias(
'AdminStatus')); ?>
44 <?php echo
$form->label($model,
'status'); ?>
45 <?php echo
$form->dropDownList($model,
'status', $model->itemAlias(
'UserStatus')); ?>
48 <div
class=
"row buttons">
52 <?php $this->endWidget(); ?>
54 </div><!-- search-form -->