I am Starting to work with codeigniter and am using Tank Auth as my Authentication Library. Currently trying to set up my application so the pages mysite.com/login and mysite.com/signup are custom views that load the login_form.php and register_form.php within the view I create.
Currently I have a pages class that loads my custom views using a view method. Within the view method of my pages class I load the view using:
$this->load->view('auth/login_form');
to load the view. When I go to the mysite.com/login I receive the following error
Fatal error: Call to undefined function set_value() in ..\application\views\auth\login_form.php on line 5
I receive the same error when trying to load the register_form.php view.
Is there another way of loading the content within the Tank Auth views into another view?