creating basic controllers
This commit is contained in:
parent
7e34253495
commit
7bef363585
9 changed files with 100 additions and 30 deletions
15
js/config.js
15
js/config.js
|
|
@ -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'
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue