Blame view

backend/views/layouts/main-login.php 640 Bytes
b0f143c3   Yarik   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
  <?php
  use backend\assets\AppAsset;
  use yii\helpers\Html;
  
  /* @var $this \yii\web\View */
  /* @var $content string */
  
  dmstr\web\AdminLteAsset::register($this);
  ?>
  <?php $this->beginPage() ?>
  <!DOCTYPE html>
  <html lang="<?= Yii::$app->language ?>">
  <head>
      <meta charset="<?= Yii::$app->charset ?>"/>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <?= Html::csrfMetaTags() ?>
      <title><?= Html::encode($this->title) ?></title>
      <?php $this->head() ?>
  </head>
  <body class="login-page">
  
  <?php $this->beginBody() ?>
  
      <?= $content ?>
  
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>