main-login.php 650 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use backend\assets\AppAsset;
  3. use yii\helpers\Html;
  4. /* @var $this \yii\web\View */
  5. /* @var $content string */
  6. backend\assets\AppAsset::register(Yii::$app->view);
  7. ?>
  8. <?php $this->beginPage() ?>
  9. <!DOCTYPE html>
  10. <html lang="<?= Yii::$app->language ?>">
  11. <head>
  12. <meta charset="<?= Yii::$app->charset ?>"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1">
  14. <?= Html::csrfMetaTags() ?>
  15. <title><?= Html::encode($this->title) ?></title>
  16. <?php $this->head() ?>
  17. </head>
  18. <body class="login-page">
  19. <?php $this->beginBody() ?>
  20. <?= $content ?>
  21. <?php $this->endBody() ?>
  22. </body>
  23. </html>
  24. <?php $this->endPage() ?>