<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
	/**
	 * Index Page for this controller.
	 *
	 * Maps to the following URL
	 * 		http://example.com/index.php/Welcome
	 *	- or -
	 * 		http://example.com/index.php/Welcome/index
	 *	- or -
	 * Since this controller is set as the default controller in
	 * config/routes.php, it's displayed at http://example.com/
	 *
	 * So any other public methods not prefixed with an underscore will
	 * map to /index.php/Welcome/<method_name>
	 * @see http://codeigniter.com/user_guide/general/urls.html
	 */
	public function __construct() {
		parent::__construct();

		 if (!$this->session->userdata('logged_in')) {
            redirect(base_url());
        }
		
 	}
	public function index(){
		$template['page'] = "Home/Dashboard";
		$template['page_title'] = "Dashboard";
		$template['data'] = "Dashboard page";
		$this->load->view('template', $template);
	}
	public function test(){
		$template['page'] = "form-demo";
		$template['page_title'] = "Test Page";
		$template['data'] = "Test page";
		$this->load->view('template', $template);
	}
	public function error_404(){
		$this->load->view('error_404');
	}
}