*/ class Auth extends CI_Controller { /** * Shows the index page. */ public function index() { $this->load->view('auth/login'); } /** * Logs the user in - or not ;-) */ public function do_login() { echo "{success: true}"; } } /* End of file auth.php */ /* Location: ./application/controllers/auth.php */