google_forms/application/controllers/Home.php

46 lines
911 B
PHP
Raw Normal View History

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 index()
{
$this->load->view('templates/header');
$this->load->view('templates/footer');
}
public function index1()
{
$this->load->view('templates/header');
$this->load->view('pages/about');
$this->load->view('templates/footer');
}
public function index2()
{
$this->load->view('templates/header');
$this->load->view('pages/formspage');
$this->load->view('templates/footer');
}
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-11 12:05:44 +00:00
}