sogo/UI/WebServerResources/js/SOGoRootPage.js

24 lines
691 B
JavaScript
Raw Normal View History

/* -*- Mode: javascript; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* JavaScript for SOGoRootPage */
2014-06-19 21:50:29 +02:00
(function() {
'use strict';
2014-06-19 21:50:29 +02:00
angular.module('SOGo.MainUI', ['SOGo.Authentication'])
2014-06-19 21:50:29 +02:00
.controller('loginController', ['$scope', 'Authentication', function($scope, Authentication) {
$scope.warning = false;
$scope.creds = { username: null, password: null };
$scope.login = function(creds) {
2014-06-19 21:50:29 +02:00
$scope.warning = false;
Authentication.login(creds)
.then(function(url) {
window.location.href = url;
}, function(msg) {
$scope.warning = msg.error;
});
return false;
};
}]);
})();