echo '{ "error":"1", "message":"Извините, введенный вами Email или Пароль неверный"}';
echo '{ "success":"1" }';
success: function(response) {
if(response.error){
$('#min').html(response.message);
//ошибка
} else if(response.success){
//location.href='http://youpage';
}
}