This commit is contained in:
2020-02-10 20:54:02 -05:00
parent c0c5ca6eb9
commit fbf39a8789
2 changed files with 26 additions and 10 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
public function index() {
$this->load->view('home/home');
// redirect("auth/index");
}
public function viewLogin() {
}
}