7 array(
'label' =>
UserModule::t(
'Profile'),
'url' => array(
'/user/profile')),
8 array(
'label' =>
UserModule::t(
'Edit'),
'url' => array(
'edit')),
9 array(
'label' =>
UserModule::t(
'Logout'),
'url' => array(
'/user/logout')),
16 <?php
$form = $this->beginWidget(
'CActiveForm', array(
17 'id' =>
'changepassword-form',
18 'enableAjaxValidation' =>
true,
19 'clientOptions' => array(
20 'validateOnSubmit' =>
true,
24 <p
class=
"note"><?php echo
UserModule::t(
'Fields with <span class="required">*</span> are required.'); ?></p>
25 <?php echo $form->errorSummary($model); ?>
28 <?php echo $form->labelEx($model,
'oldPassword'); ?>
29 <?php echo $form->passwordField($model,
'oldPassword'); ?>
30 <?php echo $form->error($model,
'oldPassword'); ?>
34 <?php echo $form->labelEx($model,
'password'); ?>
35 <?php echo $form->passwordField($model,
'password'); ?>
36 <?php echo $form->error($model,
'password'); ?>
38 <?php echo
UserModule::t(
"Minimal password length 4 symbols."); ?>
43 <?php echo $form->labelEx($model,
'verifyPassword'); ?>
44 <?php echo $form->passwordField($model,
'verifyPassword'); ?>
45 <?php echo $form->error($model,
'verifyPassword'); ?>
49 <div
class=
"row submit">
53 <?php $this->endWidget(); ?>