|
- <?php
-
- /* @var $this \yii\web\View */
- /* @var $content string */
-
- use backend\assets\AppAsset;
- use yii\helpers\Html;
- AppAsset::register($this);
- $this->registerJs('domain_path = "'. DOMAIN. '";');
- ?>
- <?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><?= Yii::$app->params['systemVersion']['HOTEL'] ?></title>
- <?php $this->head() ?>
- </head>
- <body class="page-container-bg-solid page-header-fixed page-sidebar-closed-hide-logo login" style="background-color: #ffffff; ">
- <?php $this->beginBody() ?>
- <div style="">
- <?= $content ?>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|