Files
CoreGrade/www/application/controllers/Auth.php
T
2020-01-24 07:52:28 -05:00

23 lines
442 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";
}
public function newuser() {
//$this->load->view('home/home');
echo "START NEW USER";
}
public function resetpass() {
//$this->load->view('home/home');
echo "START RESET 1";
}
}