index.php 313 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11
<?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 {
Qiang Xue committed
12
	echo "You are logged in as " . $user->identity->username . "<br/>";
Qiang Xue committed
13 14 15 16 17
	echo Html::a('logout', array('logout'));
}
?>