Advertisement
Guest User

Untitled

a guest
Jan 27th, 2017
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # THIS IS TOTALLY RENEWED - BE CAREFUL
  2.  
  3. angular.module('pazienti_light').controller "LoginCtrl", ['$scope', 'current_session', 'Session', 'MultiForm',
  4. ($scope, current_session, Session, MultiForm)->
  5.  
  6. $scope.MultiForm = MultiForm
  7.  
  8. # INITIALIZING PROFILE
  9. $scope.user =
  10. email: MultiForm.email || ""
  11. password: ""
  12. remember_me: true
  13.  
  14. # JUST A FUNCTION TO GET SIGNED UP
  15. $scope.login = (user)->
  16. Session.login user
  17.  
  18. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement