index.php
867 Bytes
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
30
31
32
33
34
35
36
37
<?php
use yii\helpers\Url;
use domain\manufacturer\ManufacturerRepository;
$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>欢迎 <?php
$user = Yii::$app->user->identity;
$username = $user->username;
echo $username;
?> 使用GK车管家管理后台</h1></div>
</div>
</div>