View file application/routing/account/register.php
<?PHP
if(isset($_SESSION['id'])) {
Redirect('/');
}
$_PAGE['name'] = getLang('routing_register');
tpl()
->SetAppearance('account')
->Start('sample')
->Content(tpl()->Get('register/index'))
->Show();