sogo/UI/WebServerResources/js/SOGoRootPage.js

37 lines
1.1 KiB
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', 'SOGo.UI'])
2014-06-19 21:50:29 +02:00
.controller('loginController', ['$scope', '$mdDialog', 'Authentication', function($scope, $mdDialog, Authentication) {
$scope.warning = false;
2015-02-13 20:30:24 +01:00
$scope.creds = { username: cookieUsername, 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;
};
$scope.showAbout = function() {
var alert;
alert = $mdDialog.alert({
title: 'About SOGo',
content: 'This is SOGo v3!',
ok: 'OK'
});
$mdDialog
.show( alert )
.finally(function() {
alert = undefined;
});
};
}]);
})();