31 lines
836 B
PHP
31 lines
836 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Auth extends CI_Controller {
|
|
|
|
public function index() {
|
|
//$this->load->view('home/home');
|
|
// echo "START LOGIN";
|
|
$this->load->view('auth/view_head');
|
|
$this->load->view('auth/view_login');
|
|
$this->load->view('auth/view_foot');
|
|
}
|
|
|
|
public function newuser() {
|
|
//$this->load->view('home/home');
|
|
$this->load->view('auth/view_head');
|
|
$this->load->view('auth/view_register');
|
|
$this->load->view('auth/view_foot');
|
|
}
|
|
|
|
public function resetpass() {
|
|
//$this->load->view('home/home');
|
|
//echo "START RESET 1";
|
|
$this->load->view('auth/view_head');
|
|
$this->load->view('auth/view_reset_password');
|
|
$this->load->view('auth/view_foot');
|
|
}
|
|
|
|
}
|