index.php
980 Bytes
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
<?php
use common\widgets\Alert;
use yii\widgets\Breadcrumbs;
use yii\web\View;
use yii\helpers\Url;
use yii\widgets\ActiveForm;
$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>
<?= Alert::widget(); ?>
<?php $form = ActiveForm::begin(); ?>
<?= $form->errorSummary($model); ?>
<?php ActiveForm::end(); ?>
</div>
</div>