pageTitle=Yii::app()->name . ' - Contact Us';
$this->breadcrumbs=array(
'Contact',
);
?>
Contact Us
user->hasFlash('contact')): ?>
user->getFlash('contact'); ?>
If you have business inquiries or other questions, please fill out the following form to contact us. Thank you.
beginWidget('CActiveForm', array(
'id'=>'contact-form',
'enableClientValidation'=>true,
'clientOptions'=>array(
'validateOnSubmit'=>true,
),
)); ?>
Fields with * are required.
errorSummary($model); ?>
labelEx($model,'name'); ?>
textField($model,'name'); ?>
error($model,'name'); ?>
labelEx($model,'email'); ?>
textField($model,'email'); ?>
error($model,'email'); ?>
labelEx($model,'subject'); ?>
textField($model,'subject',array('size'=>60,'maxlength'=>128)); ?>
error($model,'subject'); ?>
labelEx($model,'body'); ?>
textArea($model,'body',array('rows'=>6, 'cols'=>50)); ?>
error($model,'body'); ?>
labelEx($model,'verifyCode'); ?>
widget('CCaptcha'); ?>
textField($model,'verifyCode'); ?>
Please enter the letters as they are shown in the image above.
Letters are not case-sensitive.
error($model,'verifyCode'); ?>
endWidget(); ?>