update.php
1.17 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
*
* var $model SignupForm
*
*/
$this->title = 'Редактировать личные данные';
$this->params['breadcrumbs'][] = $this->title;
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\ActiveForm;
?>
<?php $form = ActiveForm::begin([
'action'=>''
]); ?>
<div class="modal_wrapper_cabinet">
<div class="cabinet_window">
<?= $form->field($model, 'email', [
'template' => '<label>'.Yii::t('app', 'email').'{input}{error}{hint}</label>',
]) ?>
<?= $form->field($model, 'username',[
'template' => '<label>'.Yii::t('app', 'username').'{input}{error}{hint}</label>',
])->textInput() ?>
<?= $form->field($model, 'surname',[
'template' => '<label>'.Yii::t('app', 'surname').'{input}{error}{hint}</label>',
])->textInput() ?>
<?= $form->field($model, 'phone', [
'template' => '<label>'.Yii::t('app', 'phone').'{input}{error}{hint}</label>',
])->textInput() ?>
<?= Html::submitButton(Yii::t('app', 'registration'), ['class' => 'my_cust_cabinet_btn']) ?>
</div>
</div>
<?php ActiveForm::end(); ?>