c420c609
alex
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* @var object $model Feedback
*/
use yii\widgets\ActiveForm;
use yii\helpers\Html;
use yii\web\View;
?>
<?php $form=ActiveForm::begin(); ?>
<?=$form->field($model,'name')->textInput([
'class' => 'input-wr'
])->label(null);?>
<?=$form->field($model,'phone')->textInput([
'class' => 'input-wr'
])->label(null)?>
<?=$form->field($model,'email')->input('email',[
'class' => 'input-wr'
])->label(null);?>
<?=Html::submitButton(\Yii::t('app',"Send"),['class' => 'button-wr']);?>
<?php ActiveForm::end();?>
|