$(function(){
    $('#change_pass').click(function(){
        $.post('/auth/change_pass', {email:$('#mylanck_email').val()}, function(data){
            if (data.status == 'ok'){
                $('#user_personal').html('<p>'+data.message+'</p>');
            } else {
                $('#mylanck_forgot_error').text(data.message);
            }
        }, 'json');
    });
});


