mirror of
https://github.com/dyzulk/dyzulk-apps.git
synced 2026-01-27 05:42:07 +07:00
19 lines
380 B
PHP
19 lines
380 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Forms extends CI_Controller {
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
|
$data['title'] = 'Forms';
|
|
$data['user'] = $this->db->get_where('users_account', ['email' => $this->session->userdata('email')])->row_array();
|
|
|
|
$this->load->view('partials/01header', $data);
|
|
$this->load->view('forms', $data);
|
|
}
|
|
|
|
|
|
}
|