Blame view

frontend/views/modal/registration_window_model_window.php 3 KB
3da83322   Administrator   21.03.16 Versrka
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  <?php
   use frontend\models\SignupForm;
  use yii\captcha\Captcha;
  use yii\helpers\Html;
  use yii\helpers\Url;
  use yii\widgets\ActiveForm;
  
  
  ?>
  <div class="modal_wrapper_reg">
      <!-- 	<form name="registration_form"> -->
      <div class="modal_window">
  
          <?php $form = ActiveForm::begin(['action'=>Url::toRoute('site/signup')]); ?>
  
              <div class="modal_close_btn"></div>
  
              <div class="title">Регистрация</div>
  
              <?= $form->field(new SignupForm(), 'email',[
                  'template' => '<label>'.Yii::t('app', 'Email').'{input}{error}{hint}</label>',
              ]) ?>
  
              <?= $form->field(new SignupForm(), 'password',[
                  'template' => '<label>'.Yii::t('app', 'Password').'{input}{error}{hint}</label>',
              ])->passwordInput() ?>
  
              <?= $form->field(new SignupForm(), 'password_repeat',[
                  'template' => '<label>'.Yii::t('app', 'Password_repeat').'{input}{error}{hint}</label>',
              ])->passwordInput() ?>
  
              <?= $form->field(new SignupForm(), 'username',[
                  'template' => '<label>'.Yii::t('app', 'Username').'{input}{error}{hint}</label>',
              ])->textInput(['autofocus' => true]) ?>
  
              <?= $form->field(new SignupForm(), 'surname',[
                  'template' => '<label>'.Yii::t('app', 'Surname').'{input}{error}{hint}</label>',
              ])->textInput() ?>
  
              <?= $form->field(new SignupForm(), 'phone',[
                  'template' => '<label>'.Yii::t('app', 'Phone').'{input}{error}{hint}</label>',
              ])->textInput() ?>
  
  
              <?= $form->field(new SignupForm(), 'verifyCode')->widget(Captcha::className(), [
                  'template' => '<label>Код проверки{image}{input}</label>',
              ])->label(false) ?>
  
  
              <div class="form-group">
                  <?= Html::submitButton('регистрация', ['class' => 'my_cust_btn', 'name' => 'signup-button']) ?>
              </div>
  
          <?php ActiveForm::end(); ?>
  <!---->
  <!--        <form>-->
  <!--            <div class="modal_close_btn"></div>-->
  <!--            <div class="title">Регистрация</div>-->
  <!--            <label>Логин (e-mail)<input type="email" id="email_reg" required></label>-->
  <!--            <label>Пароль <input type="password" id="pass_reg" required></label>-->
  <!--            <label>Повторить пароль<input type="password" id="pass_reg_rep" required></label>-->
  <!---->
  <!--            <label>Имя<input type="text" required></label>-->
  <!---->
  <!--            <label>Фамилия<input type="text" required></label>-->
  <!--            <label>Телефон<input type="text" id="phone_num_reg" required></label>-->
  <!--            <label>Код проверки<img src="/images/modal_capcha.png" alt=""> <input type="text" required></label>-->
  <!--            <div class="for_btn_position"><button class="my_cust_btn" type="submit">регистрация</button></div>-->
  <!--        </form>-->
      </div>
      <!-- 	</form> -->
  </div>