Files
WrenchBoradWeb/www/application/controllers/Eoffer.php
T
2022-07-29 16:24:24 -04:00

26 lines
773 B
PHP

<?php
class Eoffer extends CI_Controller {
public function __construct() {
parent::__construct();
// Load library and url helper
//$this->load->library('facebook');
//$this->load->helper('url');
$this->load->library(array('session', 'lib_login'));
}
public function index() {
$data["login_message"] = "";
$data['offerID'] = $this->input->get('offerID'); // '08174596144';
$data['title'] = "Login"; // Capitalize the first letter
$data['page_title'] = "Login WrenchBoard";
//$this->load->view('templates/header_boxed', $data);
// $this->load->view('users/view_login', $data);
// $this->load->view('users/view_external_footer');
redirect('login');
}
}