Initial commit

This commit is contained in:
Eike Foken
2011-04-16 13:57:38 +02:00
parent cd3750db95
commit b570685ae8
924 changed files with 172926 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php defined('BASEPATH') || exit("No direct script access allowed");
class Auth extends CI_Controller {
public function index() {
$this->load->view('auth/login');
}
public function do_login() {
echo "{success: true}";
}
}
/* End of file auth.php */
/* Location: ./application/controllers/auth.php */