creating basic controllers

This commit is contained in:
Gustavo Cortez 2014-03-26 09:18:42 -03:00
commit 7bef363585
9 changed files with 100 additions and 30 deletions

View file

@ -6,11 +6,18 @@ angular
.config(function($routeProvider) {
$routeProvider
.when('/signin', {
.when('/', {
templateUrl: 'home.html'
}).when('/transactions', {
templateUrl: 'transactions.html'
}).when('/send', {
templateUrl: 'send.html'
}).when('/backup', {
templateUrl: 'backup.html'
}).when('/signin', {
templateUrl: 'signin.html'
})
.when('/home', {
templateUrl: 'home.html'
}).otherwise({
templateUrl: '404.html'
});
});