Dash page logou

This commit is contained in:
2019-03-02 18:26:34 +00:00
parent a86188a54f
commit f34436219a
10 changed files with 481 additions and 166 deletions
@@ -1,11 +1,12 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Register extends CI_Controller {
class Register extends Web_Controller {
public function index() {
$data = array();
$this->renderExternalPage('register', $data);
}
public function index()
{
$this->load->view('register');
}
}