2024-07-11 12:05:44 +00:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Home extends CI_Controller
|
|
|
|
{
|
|
|
|
|
2024-07-19 10:46:18 +00:00
|
|
|
// index2-default
|
|
|
|
public function default_page()
|
2024-07-11 12:05:44 +00:00
|
|
|
{
|
2024-07-16 12:29:59 +00:00
|
|
|
$this->load->view('Frontend/header');
|
|
|
|
|
|
|
|
$this->load->view('Form_controller/index_forms');
|
|
|
|
$this->load->view('Frontend/footer');
|
2024-07-19 10:46:18 +00:00
|
|
|
}
|
2024-07-16 12:29:59 +00:00
|
|
|
|
2024-07-19 10:46:18 +00:00
|
|
|
public function design_form()
|
|
|
|
{
|
2024-07-11 12:05:44 +00:00
|
|
|
|
2024-07-19 10:46:18 +00:00
|
|
|
$this->load->view('templates/forms_ui');
|
2024-07-11 12:05:44 +00:00
|
|
|
|
|
|
|
}
|
2024-07-19 10:46:18 +00:00
|
|
|
public function title()
|
2024-07-11 12:05:44 +00:00
|
|
|
{
|
|
|
|
$this->load->view('templates/header');
|
2024-07-19 10:46:18 +00:00
|
|
|
$this->load->view('templates/form_title');
|
2024-07-11 12:05:44 +00:00
|
|
|
$this->load->view('templates/footer');
|
2024-07-16 12:29:59 +00:00
|
|
|
|
2024-07-19 10:46:18 +00:00
|
|
|
}
|
|
|
|
public function ui_forms()
|
|
|
|
{
|
|
|
|
$this->load->view('templates/forms_ui');
|
|
|
|
}
|
2024-07-16 12:29:59 +00:00
|
|
|
|
|
|
|
|
2024-07-11 12:05:44 +00:00
|
|
|
}
|