- Код: Выделить всё
if (Yii::app()->user->isGuest){
?>
<div class="row">
<?php echo $form->labelEx($model, 'verifyCode');?>
<?php $display = (param('useReCaptcha', 0)) ? 'none;' : 'block;'?>
<?php echo $form->textField($model, 'verifyCode', array('autocomplete' => 'off', 'style' => "display: {$display}"));?><br/>
<?php echo $form->error($model, 'verifyCode');?>
<?php
$this->widget('CustomCaptchaFactory',
array(
'captchaAction' => '/apartments/main/captcha',
'buttonOptions' => array('class' => 'get-new-ver-code'),
'imageOptions'=>array('id'=>'send_email_captcha'),
'clickableImage' => true,
'model' => $model,
'attribute' => 'verifyCode',
)
);
?>
<br />
</div>
<?php
}
Вот это место
- Код: Выделить всё
if (Yii::app()->user->isGuest){