nologin.php
912 Bytes
<?php
use backend\themes\defaults\assets\AppAsset;
/**
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c), Thread
*/
$bundle = AppAsset::register($this);
$this->beginPage()
?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
<head>
<base href="<?= Yii::$app->getUrlManager()->getBaseUrl() ?>">
<meta charset="<?= Yii::$app->charset ?>"/>
<link rel="shortcut icon" type="image/png" href="shortfavicon.png"/>
<link rel="icon" type="image/png" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php $this->head(); ?>
</head>
<body class="gray-bg">
<?php $this->beginBody() ?>
<div class="middle-box text-center loginscreen animated fadeInDown">
<div><?= $content ?></div>
</div>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>