View file application/routing/account/auth.php

File size: 215B
<?PHP
	if(isset($_SESSION['id'])) {
		Redirect('/');
	}
	
	$_PAGE['name'] = getLang('routing_auth');
	
	tpl()
	->SetAppearance('account')
	->Start('sample')
	->Content(tpl()->Get('auth/index'))
	->Show();