Files
CoreGrade/www/application/controllers/Home.php
T
2020-02-10 20:54:02 -05:00

18 lines
275 B
PHP

<?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() {
}
}