google_forms/application/controllers/Homepage.php

32 lines
699 B
PHP
Raw Normal View History

2024-07-11 12:05:44 +00:00
<?php
2024-08-09 12:04:48 +00:00
2024-07-11 12:05:44 +00:00
defined('BASEPATH') or exit('No direct script access allowed');
2024-07-22 12:39:47 +00:00
class Homepage extends CI_Controller
2024-07-11 12:05:44 +00:00
{
2024-08-09 12:04:48 +00:00
// index2-default
public function home()
{
$this->load->view('Frontend/header');
$this->load->view('Form_controller/index_forms');
$this->load->view('Frontend/footer');
}
public function design_form()
{
$this->load->view('templates/forms_ui');
}
public function title()
{
$this->load->view('templates/header');
$this->load->view('templates/form_title');
$this->load->view('templates/footer');
}
public function ui_forms()
{
$this->load->view('templates/forms_ui');
}
}