-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
31 lines (30 loc) · 802 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
angular.module('app', ['ngRoute'])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'creds.html',
controller: 'CredsCtrl'
})
.when('/forgot', {
templateUrl: 'forgot.html',
controller: 'ForgotCtrl'
})
.when('/landing', {
templateUrl: 'landing.html'
})
.otherwise('/');
})
.controller('CredsCtrl', function ($scope, $location) {
$scope.submit = function () {
if ($scope.user &&
$scope.user.email === 'foo@bar.com' &&
$scope.user.password === 'baz') {
$scope.badPassword = false;
$location.url('/landing');
} else {
$scope.badPassword = true;
}
};
})
.controller('ForgotCtrl', function ($scope, $location) {
});