'auth test', 'redirect' => $_SERVER['PHP_SELF'], 'message' => 'meow meow meow meow meow meow meow meow meow meow meow meow' ]; // Print page contents print Templates::render('errors/information.tpl', $renderData); exit; } } // Add page specific things $renderData['page'] = [ 'title' => 'Login to Flashii' ]; $renderData['auth'] = [ 'redirect' => ( isset($_REQUEST['chat']) ? Configuration::getLocalConfig('urls', 'chat') : ( isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : Configuration::getLocalConfig('urls', 'main') ) ), 'blockRegister' => [ 'do' => true, 'username' => 'test' ] ]; // Print page contents print Templates::render('main/authenticate.tpl', $renderData);