Blame view

frontend/views/call/index.php 1023 Bytes
4253cbec   root   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
30
31
32
33
34
  <?php
  use yii\helpers\Url;
  use yii\widgets\Breadcrumbs;
  use app\models\News;
  use yii\widgets\LinkPager;
  use yii\widgets\ActiveForm;
  
  ?>
  <?php
  $this->title = 'Обратный звонок';
  $this->registerMetaTag(['name' => 'description', 'content' => 'Обратный звонок']);
  $this->registerMetaTag(['name' => 'keywords', 'content' => 'Обратный звонок']);
  ?>
  
  <!--            <nav class="bread-crumbs">-->
  <!--            --><?//= Breadcrumbs::widget([
  //                'links' => [
  //                            'Обратный звонок'
  //                            ],
  //            ]) ?>
  <!--                            <div class="both"></div>-->
  <!--            </nav>-->
  
  <div class="layout">
      
      <div class="content">
  	<h1>Обратный звонок</h1>
          
  <?php $form = ActiveForm::begin(); ?>
  <?= $form->errorSummary($model); ?>       
  <?php ActiveForm::end(); ?>        
      </div>                                    
                                          
  </div>