MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/crm_cafsindia_com/application/controllers/signup.php
<?php
class Signup extends CI_Controller {
	public function __construct(){
		parent::__construct();
		 $this->load->model('Signups');
	}

	public function index(){
		$this->load->view('signup');
	}

	// used to valid and check user exist
	public function signup_check(){
		$Status = $this->Signups->save_signup($this->input->post('eml'), $this->input->post('mob'));
		$msg = $Status['msg'];
		if($Status['sts'] === "2"){
			echo json_encode(array('sts' => "2", 'message' => "SHOWLOGIN"));
		}else{
			echo json_encode(array('sts' => "1", 'message' => "SHOWOTP"));
		}
	}

	//Validate otp
	public function verify_otp(){
		$verifySts = $this->Signups->save_customer($this->input->post('otp'), $this->input->post('pwd'));
		if($verifySts['sts'] === "0"){
			echo json_encode(array('sts' => "0", 'message' => "INV_OTP"));
		}else{
			echo json_encode(array('sts' => "1", 'message' => "Created account"));
		}
		//print_r($verifySts);
	}
}
?>