Example #1
0
 function __construct()
 {
     parent::__construct('resetpassword');
     $this->load->helper('crypto');
     // Load data
     $this->email = $this->input->post('email');
 }
Example #2
0
 function __construct()
 {
     parent::__construct('validate');
     // Load data
     $this->email = $this->input->post('email');
     $this->code = $this->input->post('validationcode');
 }
Example #3
0
 function __construct()
 {
     parent::__construct('signup');
     $this->load->helper('crypto');
     // Load data
     $this->email = $this->input->post('email');
     $this->password = $this->input->post('password');
     $this->firstname = $this->input->post('firstname');
     $this->lastname = $this->input->post('lastname');
 }
Example #4
0
 function __construct()
 {
     parent::__construct('search');
     // Load data
     $this->name = $this->input->post('name');
 }