This commit is contained in:
2020-01-24 17:51:59 -05:00
parent c2f71d823d
commit 7f3e301b7d
6 changed files with 307 additions and 3 deletions
+11 -3
View File
@@ -6,17 +6,25 @@ class Auth extends CI_Controller {
public function index() {
//$this->load->view('home/home');
echo "START LOGIN";
// 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');
echo "START NEW USER";
$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";
//echo "START RESET 1";
$this->load->view('auth/view_head');
$this->load->view('auth/view_reset_password');
$this->load->view('auth/view_foot');
}
}