$stateProvider
.state('join', {
url: '/join',
controller: 'joinController',
templateUrl: '/join/join.html',
title: 'Join Kiwibank'
})
.state('join.register', {
url: '/register',
templateUrl: '/join/join.register.html',
title: 'Join Kiwibank - Enter your details'
})
.state('join.legal', {
url: '/legal',
controller: 'joinLegalController',
templateUrl: '/join/join.legal.html',
title: 'Join Kiwibank - Legal stuff'
})