You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
17 lines
309 B
<?php |
|
/** @var $this \yii\base\View */ |
|
|
|
use yii\helpers\Html; |
|
|
|
$this->title = 'Hello World'; |
|
|
|
$user = Yii::$app->getUser(); |
|
if ($user->isGuest) { |
|
echo Html::a('login', array('login')); |
|
} else { |
|
echo "You are logged in as " . $user->identity->name . "<br/>"; |
|
echo Html::a('logout', array('logout')); |
|
} |
|
?> |
|
|
|
|
|
|