Hi guys,
I have problem with my URL, I have login page when i access in my URL looks project/login when i have a successful login it redirects me to dashboard but my url is still on project/login it should be project/dashboard
<?php
if($find_user){
$this->forward('dashboard');
}
else{
$message = 'Invalid email/password combination';
self::_LFerror($message);
return false;
}