$(document).ready(function() {
$("#login_form").submit(function(e) {
e.preventDefault();
e.stopImmediatePropagation();
$('.ajax_response').html();
clean_form(this);
is_complete(this.username, "Nome não foi preenchido");
is_complete(this.password, "Senha não foi completada");
// show the errors or continue if everything is ok
if (show_form_errors() == false) {
return false;
}
else {
var url = $(this).attr('action');
$('.ajax_response').html('').removeClass('alert-danger alert-success').slideUp();
$('#submit').html(' Login...');
$.ajax({
cache: false,
type: "post",
url: url,
data: $(this).serialize(), // serializes the form's elements.
success: function(response)
{
var json = jQuery.parseJSON(response);
if ( json.status == 'success' ) {
// $('.ajax_response').html(json.message);
// $('.ajax_response').addClass('alert-success');
$('#submit').html(' Redirecionando......');
$('#submit').removeClass('btn-primary').addClass('btn-success');
setTimeout('window.location.href = "'+json.location+'"', 1000);
}
else {
$('.ajax_response').addClass('alert-danger').slideDown().html(json.message);
$('#submit').html('Entrar');
}
}
});
return false;
}
});
});
Esqueceu sua senha? Clique aqui para recupera-la.
Não tem uma conta ainda? Registre-se.