summaryrefslogtreecommitdiff
path: root/client/js/controllers/login.js
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-05 19:35:38 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-05 19:35:38 +0100
commitcca5df968e3598b07ee81c1f7f2680f5b9120ec3 (patch)
tree4c8d236f4a49b4daab91ced8b78f5c407e7a8f39 /client/js/controllers/login.js
parenta16df328c05b3ac005a3c05237a069786b8d5d6f (diff)
Add sharedProfile service
Diffstat (limited to 'client/js/controllers/login.js')
-rw-r--r--client/js/controllers/login.js19
1 files changed, 12 insertions, 7 deletions
diff --git a/client/js/controllers/login.js b/client/js/controllers/login.js
index 07f1d19..3447ab1 100644
--- a/client/js/controllers/login.js
+++ b/client/js/controllers/login.js
@@ -3,24 +3,27 @@
* Represents a book.
* @constructor
*/
-mainApp.controller('loginCtrl', function ($scope,$interval,$sce, $http)
+mainApp.controller('loginCtrl', ['$scope','$sce','$http', 'sharedProfile', function ($scope,$sce, $http, sharedProfile)
{
// Define default states
$('#loginModal').modal({backdrop: 'static', keyboard: false});
$('#loadingLoginButton').hide();
$('#failedToLoginAlert').hide();
-
+
$('#loginButton').click(function(){
$('#loginButton').hide();
$('#loadingLoginButton').show();
$('#failedToLoginAlert').hide();
- var result=identity.request.login($http,$("#loginFormUsername").val(), $("#loginFormProjectname").val(), $("#loginFormPassword").val());
+ var username=$("#loginFormUsername").val();
+ var password=$("#loginFormPassword").val();
+ var projectname=$("#loginFormProjectname").val();
+
+ var result=identity.request.login($http,username, password, projectname);
result.then(function (response){
-
// Parser result
var requestResultObject=identity.requestParser.parseLoginAnswer(response);
@@ -31,21 +34,23 @@ mainApp.controller('loginCtrl', function ($scope,$interval,$sce, $http)
}
else {
$('#loginModal').modal('hide');
+ sharedProfile.username=username;
+ sharedProfile.projectname=projectname;
+
}
// Reset button state
$('#loginButton').show();
$('#loadingLoginButton').hide();
},function(response){
-
$('#failedToLoginAlert').show();
// Reset button state
$('#loginButton').show();
$('#loadingLoginButton').hide();
});
-
+
});
-});
+}]);