diff --git a/application/controllers/setup.php b/application/controllers/setup.php new file mode 100644 index 000000000..7da7e2b8d --- /dev/null +++ b/application/controllers/setup.php @@ -0,0 +1,15 @@ +load->model('user_model'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + + $this->load->view('layout/header'); + $this->load->view('setup/index'); + $this->load->view('layout/footer'); + } +} \ No newline at end of file diff --git a/application/views/setup/index.php b/application/views/setup/index.php new file mode 100644 index 000000000..bedf6e111 --- /dev/null +++ b/application/views/setup/index.php @@ -0,0 +1,6 @@ +

Setup

+
+ +

Options coming soon.

+ +
\ No newline at end of file