If you don't need to control the forms in the CMS, you can create static view files that contain the forms. You can use FUEL's Form class or Form_builder class to help build the forms (but is not required). Then create a controller with a method in your advanced module folder that renders the view file like so: $vars = array(); // array of variables to pass to the view
$this->load->module_view('my_module', 'my_view', $vars); http://www.getfuelcms.com/user_guide/libraries/form http://www.getfuelcms.com/user_guide/libraries/form_builder
Comments
$vars = array(); // array of variables to pass to the view $this->load->module_view('my_module', 'my_view', $vars);
http://www.getfuelcms.com/user_guide/libraries/form
http://www.getfuelcms.com/user_guide/libraries/form_builder