(function(){
angular.module("app", ["ngRoute"])
.config(function($routeProvider){
$routeProvider.when("/registration", {
templateUrl: "/templates/registration/form.html",
controller: "registrationCtrl"
});
$routeProvider.otherwise({redirectTo: '/registration'});
});
})();