Dash page logou

This commit is contained in:
2019-03-02 19:12:19 +00:00
parent fda71fdd64
commit 869fff1268
4 changed files with 34 additions and 16 deletions
@@ -1,13 +1,12 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Provider extends CI_Controller {
class Provider extends Provider_Controller {
public function index() {
$data = array();
$this->renderProviderSecurePage('dash', $data);
}
public function index()
{
$data = array();
$this->load->view('provider/dash',$data);
}
}