Backend Service

This commit is contained in:
2019-04-01 15:04:07 +00:00
parent 617d41139f
commit e6b002c62b
8 changed files with 65 additions and 4 deletions
@@ -0,0 +1,13 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login extends CI_Controller {
public function index()
{
/* THIS IS HE BACK office Login
*/
$this->load->view('welcome_message');
}
}