Refactored the widget usage with ActiveField.
This commit is contained in:
parent
3522b5466f
commit
1b94eff5d8
@ -31,15 +31,9 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
<?php echo $form->field($model, 'email')->textInput(); ?>
|
<?php echo $form->field($model, 'email')->textInput(); ?>
|
||||||
<?php echo $form->field($model, 'subject')->textInput(); ?>
|
<?php echo $form->field($model, 'subject')->textInput(); ?>
|
||||||
<?php echo $form->field($model, 'body')->textArea(array('rows' => 6)); ?>
|
<?php echo $form->field($model, 'body')->textArea(array('rows' => 6)); ?>
|
||||||
<?php
|
<?php echo $form->field($model, 'verifyCode')->widget(Captcha::className(), array(
|
||||||
$field = $form->field($model, 'verifyCode');
|
'options' => array('class' => 'input-medium'),
|
||||||
echo $field->begin()
|
)); ?>
|
||||||
. $field->label()
|
|
||||||
. Captcha::widget()
|
|
||||||
. Html::activeTextInput($model, 'verifyCode', array('class' => 'input-medium'))
|
|
||||||
. $field->error()
|
|
||||||
. $field->end();
|
|
||||||
?>
|
|
||||||
<div class="form-actions">
|
<div class="form-actions">
|
||||||
<?php echo Html::submitButton('Submit', null, null, array('class' => 'btn btn-primary')); ?>
|
<?php echo Html::submitButton('Submit', null, null, array('class' => 'btn btn-primary')); ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user