main.php
2.07 KB
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
<?php
/* @var $this \yii\web\View */
/* @var $content string */
use yii\helpers\Html;
use app\assets\AppAsset;
AppAsset::register($this);
?>
<?php $this->beginPage() ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&subset=cyrillic,cyrillic-ext,latin-ext" rel="stylesheet">
<link type="image/x-icon" href="favicon.ico" rel="icon">
<?php $this->registerCsrfMetaTags() ?>
<title><?= Html::encode($this->title) ?></title>
<?php $this->head() ?>
</head>
<body>
<?php $this->beginBody() ?>
<style>
iframe {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
</style>
<div class="active section-box-1">
<span class="first-btn btn_">Подписаться на ветер</span>
<span class="second-btn btn_">Смотреть карту</span>
<div class="hidden-form">
<form action="">
<div class="input-wr">
<label for="input-name">Имя</label>
<input id="input-name" type="text">
</div>
<div class="input-wr">
<label for="input-email">Почта</label>
<input id="input-email" type="text">
</div>
<div class="input-wr submit-wr">
<button type="submit">Отправить</button>
</div>
</form>
</div>
</div>
<div class="section-box-map">
<iframe src="https://www.google.com/maps/d/u/0/embed?mid=1i7xYukKWTOidy_IDDRETE078TmDlxTLV" width="640" height="480"></iframe>
<div class="green-block">
<p>При поддержке</p>
<span> Х-park</span><a target="_blank" href="https://extremstyle.ua">extremstyle.ua</a><span>KFSU</span>
</div>
</div>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>