diff -r 21ecbde9e080 -r 4053d9a44548 client/app/login/login_controller.js --- a/client/app/login/login_controller.js Mon Mar 23 12:22:44 2015 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -(function(){ - 'use strict'; - - - angular.module('ammicoLogin',['ngRoute']) - .config(function ($routeProvider) { - $routeProvider - .when('/', { - templateUrl: 'login/login.html', - controller: 'loginCtrl' - }); - }) - .controller('loginCtrl', function($http){ - $http.get('http://127.0.0.1:8080/ammico/login/?&username=toto@gmail.com'). - success(function() { - console.log('KATAPLA !'); - }); - }); -})();