Blame view

frontend/views/modal/my_callback_modal_window.php 1.56 KB
50e38c82   Administrator   big commti
1
2
3
4
5
  <?php
  
  use yii\helpers\Html;
  
  ?>
eaf6988b   Administrator   big commti
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <div class="modal fade" id="myCallback" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
      <div class="modal-dialog auth" role="document">
          <div class="modal-content">
  
              <div class="modal-header">
                  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                  <h4 class="modal-title" id="myModalLabel">Заказ обратного звонка</h4>
              </div>
  
              <div class="modal-body">
  
                  <form>
                      <p>Оставьте номер вашего телефона и наш оператор перезвонит вам в течении часа.</p>
                      <div class="form-group">
                          <label for="СallbackName1">Ваше имя</label>
50e38c82   Administrator   big commti
21
                          <?= Html::textInput('name',"",['class'=>'consultation_name']) ?>
eaf6988b   Administrator   big commti
22
23
24
25
                      </div>
  
                      <div class="form-group">
                          <label for="СallbackPhone1">Телефон</label>
50e38c82   Administrator   big commti
26
                          <?= Html::textInput('phone',"",['class'=>'consultation_phone']) ?>
eaf6988b   Administrator   big commti
27
28
                      </div>
                      <div class="example">примеры: +38 (044) 33-992-33 </div>
50e38c82   Administrator   big commti
29
                      <?= Html::submitButton("Жду звонка", ['class' => 'btn btn-default', 'name' => 'login-button']) ?>
eaf6988b   Administrator   big commti
30
31
32
33
34
35
36
37
38
                      <div class="clearfix"></div>
                  </form>
                  <br />
  
              </div>
  
          </div>
      </div>
  </div>