$('#loginBtn').click(function() {
client.signInManager.signIn({
username: $('#username').val(),
password: $('#password').val()
}).then(
function() {
alert('Sign in as ' + client.personAndGroupsManager.mePerson.displayName());
}, function(err) {
alert(err || 'Cannot sign in');
}
);
});