Blame view

frontend/views/iam/edit_customer.php 3.26 KB
550eac02   Administrator   second
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  use yii\helpers\Html;
  use yii\web\View;
  use yii\bootstrap\ActiveForm;
  use yii\captcha\Captcha;
  
  
  
  $this->title = 'Редактирование Заказчика';
  $this->params['breadcrumbs'][] = ['label'=>'Профиль','url'=>['/iam/index']];
  $this->params['breadcrumbs'][] = $this->title;
  
3a8a9bd9   Administrator   image size
13
  $this->registerJsFile(Yii::$app->request->baseUrl.'/js/jquery.mask.js',['position'=>View::POS_END,'depends'=>['yii\web\YiiAsset']]);
550eac02   Administrator   second
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
  
  $this->registerJs("
  $('#user-phone').mask('(000) 000-0000');
  ", View::POS_READY, 'mask');
  ?>
  <div class="col-md-6 col-md-offset-3">
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?php $form = ActiveForm::begin([
          'id' => 'reg-form',
          'options' => ['class' => 'form-vertical','enctype' => 'multipart/form-data'],
          'fieldConfig' => [
              //'template' => "{label}\n<div class=\"col-lg-5\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
              //'labelOptions' => ['class' => 'col-lg-2 control-label'],
          ],
      ]); ?>
  
  
      <?= $form->field($model, 'password')->passwordInput() ?>
  	
  	<?= $form->field($model, 'password_repeat')->passwordInput(['value'=>$model->password]) ?>
  	
  	<?= $form->field($model, 'name') ?>
  	
  	<?= $form->field($model, 'surname') ?>
      
      <label class="control-label">Дата рождения</label>
      <div class="form-inline">    
7ba4acc5   Administrator   after marge
42
          <?php$day = [];
550eac02   Administrator   second
43
44
45
46
47
48
49
              for($i=1;$i<=31;$i++){
              $day[$i] = $i;
              }
              
              echo $form->field($model, 'birth_day')->dropDownList($day,['prompt'=>'День'])->label(false); 
              ?>
  
7ba4acc5   Administrator   after marge
50
          <?php
550eac02   Administrator   second
51
52
53
54
              echo $form->field($model, 'birth_mouth')->dropDownList(['1'=>'Январь','2'=>'Февраль','3'=>'Март','4'=>'Апрель','5'=>'Май','6'=>'Июнь','7'=>'Июль','8'=>'Август','9'=>'Сентябрь','10'=>'Октябрь','11'=>'Ноябрь','12'=>'Декабрь'],['prompt'=>'Месяц'])->label(false); 
              ?>
              
              
7ba4acc5   Administrator   after marge
55
          <?php$year = [];
550eac02   Administrator   second
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
              for($i=date('Y');$i>=1920;$i--){
              $year[$i] = $i;
              }
              
              echo $form->field($model, 'birth_year')->dropDownList($year,['prompt'=>'Год'])->label(false); 
              ?>            
      </div>    
  	<?= $form->field($model, 'phone') ?>
  	
  	<?=$form->field($model, 'sex')->dropDownList(['мужской' => 'мужской', 'женский' => 'женский'],['prompt'=>'...']); ?>
  
  	<?=$form->field($model, 'status')->dropDownList(['Не женат' => 'Не женат','Не замужем'=>'Не замужем', 'Женат' => 'Женат','Замужем'=>'Замужем'],['prompt'=>'...']); ?>
  	
  	<?=$form->field($model, 'children')->dropDownList(['есть' => 'есть', 'нет' => 'нет'],['prompt'=>'...']); ?>
  
  
  	<?= $form->field($model, 'body')->textArea(['rows' => '6']) ?>
  	
      <?= $form->field($model, 'image')->fileInput() ?>
          
      <?= $form->field($model, 'old_image')->hiddenInput(['value'=>$model->image])->label(false); ?> 	
  	
  	<?= $form->field($model, 'role')->hiddenInput(['value'=>'customer'])->label(false); ?> 
      <div class="form-group">
              <?= Html::submitButton(' Сохранить ', ['class' => 'btn btn-primary btn-lg btn-block', 'name' => 'login-button']) ?>
      </div>
  
      <?php ActiveForm::end(); ?>
  
  </div>
3f2bc3d0   Administrator   first commit
86