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.
18 lines
309 B
18 lines
309 B
12 years ago
|
<?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'));
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
|