migrating to fuel cms

Im new to fuel cms but have used ci 3 to create my website. I am currently trying to convert my existing site but am running in to some issues.

I looked at the form builder but do not know how i specify what url the submit button will post data to. How do i define the submit url?

I also wanted to know how do i use your login template in fuel to create a registration page?

Comments

  • edited 4:49AM
    The develop branch is using CI 3.0 if you want to take a look at that.
    $this->load->library('form_builder'); $this->form_builder->form_attrs = 'action="'.site_url('my_page').'" method="POST"'; //.....

    Regarding the login template and the registration page, I'm not sure how much help that will be since it's specific to just logging into FUEL (it's just a normal CI controller and a view though). Also, you may want to look at the forms module would be a better place if you are wanting a way to build forms and process the information
    http://docs.getfuelcms.com/modules/forms
Sign In or Register to comment.