I use the Auth component. I have an Ajax login form and I want to show a success/failure message under the form without a page refresh.
But when I submit a form (using jquery.form.js):
$('#loginform').ajaxForm(function(data) {
alert(data);
});
it returns home.ctp contents in the alert in case of success and returns the login form's HTML codes in case of failure!
I want to receive $this->Auth->loginError in alert(data).
These are some app_controller beforeFilter settings:
function beforeFilter(){
$this->Auth->loginRedirect = false;
$this->Auth->logoutRedirect = false;
$this->Auth->loginError = __('Invalid e-mail or password.', true);
$this->Auth->autoRedirect = false;
$this->autoRender = false;
$this->render('login','ajax');
}
I used loginRedirect to render some logics and making a JSON object for the jQuery process.