signup and login working

This commit is contained in:
arnaucode
2018-02-01 13:14:51 +01:00
parent ad76d73e12
commit bad807b79d
33 changed files with 1040 additions and 0 deletions

16
webapp/views/main/main.js Executable file
View File

@@ -0,0 +1,16 @@
'use strict';
angular.module('app.main', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/main', {
templateUrl: 'views/main/main.html',
controller: 'MainCtrl'
});
}])
.controller('MainCtrl', function($scope, $rootScope, $http) {
});