Add anual report feature
This commit is contained in:
45
application/controllers/user/ResetPassword.php
Normal file
45
application/controllers/user/ResetPassword.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class ResetPassword extends CI_Controller {
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->load->model("UserModel");
|
||||
|
||||
if($this->UserModel->isNotLogin()) {
|
||||
redirect(site_url('login'));
|
||||
} elseif(!($this->UserModel->isPemilik())) {
|
||||
redirect(site_url('admin/dashboard'));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$data['user_logged'] = $this->session->userdata('user_logged');
|
||||
|
||||
if($this->input->get()){
|
||||
$get = $this->input->get();
|
||||
if(isset($get['msg'])){
|
||||
$data['msg'] = $get['msg'];
|
||||
}
|
||||
}
|
||||
|
||||
if($this->input->post()){
|
||||
|
||||
if($this->UserModel->resetPassword($data['user_logged']->id_user)){
|
||||
redirect(site_url('user/resetpassword?&msg=success'));
|
||||
} else {
|
||||
$data['msg']="error!";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$this->load->view('user/resetpassword',$data);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user