$('body').on('submit','#authform',function(e){
e.preventDefault();
$.post($('#authform').attr('action'), $('#authform').serialize(), function (data) {
if(data == 0) {
$('#msg-error').show();
alert(data);
}else {
$('#msg-ok').show();
alert(data);
}
return false;
},'json');
});