Skip to content

Commit

Permalink
forget password bug resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
kishor10d committed Mar 23, 2017
1 parent 7a61f28 commit 4d95cfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function loginMe()
/**
* This function used to load forgot password view
*/
function forgotPassword()
public function forgotPassword()
{
$this->load->view('forgotPassword');
}
Expand All @@ -111,7 +111,7 @@ function resetPasswordUser()

if($this->form_validation->run() == FALSE)
{
$this->forgetPasswordUser();
$this->forgotPassword();
}
else
{
Expand Down
1 change: 1 addition & 0 deletions application/views/forgotPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
</div><!-- /.col -->
</div>
</form>
<a href="<?php echo base_url() ?>">Login</a><br>
</div><!-- /.login-box-body -->
</div><!-- /.login-box -->

Expand Down

0 comments on commit 4d95cfe

Please sign in to comment.