<?php

class DefaultController extends Controller
{
	public function actionIndex()
	{
		if (Yii::app()->user->getState('username')=="admin2"){
			$this->renderPartial('index');
		}
		else{
			$this->redirect('../../panel');
		}

	}
	public function actionLogout()
	{
		Yii::app()->user->logout();
		//$this->redirect(Yii::app()->homeUrl);
		$this->redirect('../../panel');
	}
}