mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-17 03:59:28 +00:00
15c4c1af24
- Controllers now don't extend VileSci_Controller but FHC_Controller
17 lines
255 B
PHP
17 lines
255 B
PHP
<?php
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Login extends FHC_Controller
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('test.php');
|
|
}
|
|
}
|