Files
2021-10-09 21:59:14 -04:00

25 lines
742 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');
}
}