can add karyawan

This commit is contained in:
kicap1992
2021-05-01 10:38:01 +08:00
parent 7c09b4a7f6
commit 6fb6596e75
1457 changed files with 634291 additions and 1003 deletions

View File

@ -0,0 +1,24 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login
extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('model');
}
function index(){
$this->load->view('login/index');
}
}
?>