Last active
December 16, 2015 02:38
-
-
Save oliverm2112/5363463 to your computer and use it in GitHub Desktop.
Angular - Login Controller sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.controller('LoginCtrl', ['$scope', function ($scope) { | |
$scope.model = { | |
userName : '', | |
password : 'name' | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment