2024-07-11 12:05:44 +00:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Home extends CI_Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
public function index1()
|
|
|
|
{
|
|
|
|
$this->load->view('templates/header');
|
|
|
|
$this->load->view('pages/about');
|
|
|
|
$this->load->view('templates/footer');
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
public function index2()
|
|
|
|
{
|
2024-07-16 12:29:59 +00:00
|
|
|
// $this->load->view('templates/header');
|
|
|
|
$this->load->view('Frontend/header');
|
|
|
|
|
|
|
|
$this->load->view('Form_controller/index_forms');
|
|
|
|
// $this->load->view('templates/footer');
|
|
|
|
$this->load->view('Frontend/footer');
|
|
|
|
|
2024-07-11 12:05:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
public function index3()
|
|
|
|
{
|
|
|
|
$this->load->view('templates/header');
|
|
|
|
$this->load->view('pages/homepage');
|
|
|
|
$this->load->view('templates/footer');
|
|
|
|
}
|
|
|
|
|
2024-07-12 11:50:41 +00:00
|
|
|
public function design_form(){
|
2024-07-11 12:05:44 +00:00
|
|
|
$this->load->view('templates/forms_ui');
|
|
|
|
}
|
2024-07-12 11:50:41 +00:00
|
|
|
public function title(){
|
|
|
|
$this->load->view('templates/header');
|
|
|
|
$this->load->view('templates/form_title');
|
|
|
|
$this->load->view('templates/footer');
|
|
|
|
|
|
|
|
}
|
2024-07-16 12:29:59 +00:00
|
|
|
public function index4()
|
|
|
|
{
|
|
|
|
$this->load->view('templates/forms_ui');
|
|
|
|
}
|
|
|
|
|
|
|
|
// public function preview_forms($data)
|
|
|
|
|
|
|
|
// { $this->load->view('templates/header');
|
|
|
|
|
|
|
|
// $this->load->view('form_preview',$data);
|
|
|
|
// $this->load->view('templates/footer');
|
|
|
|
|
|
|
|
// }
|
2024-07-11 12:05:44 +00:00
|
|
|
}
|