index.php
674 Bytes
<?php
use yii\helpers\Url;
$this->title = '欢迎';
$this->params['breadcrumbs'][] = '欢迎';
?>
<style>
.panel-body {
padding-bottom: 100px;
}
.panel-body .image {
text-align: center;
}
.panel-body img {
width: 256px;
height: 256px;
}
.panel-body .welcome-text {
position: relative;
text-align: center;
}
</style>
<div class="panel panel-default">
<div class="panel-body">
<div class="image"><img src="<?php echo Url::to('@web/images/error-logo.png'); ?>"/></div>
<div class="welcome-text"><h1>欢迎 <?= $username ?> 使用管理后台</h1></div>
</div>
</div>