diff --git a/client/fonts/glyphicons-halflings-regular.eot b/client/fonts/glyphicons-halflings-regular.eot
deleted file mode 100644
index b93a495..0000000
Binary files a/client/fonts/glyphicons-halflings-regular.eot and /dev/null differ
diff --git a/client/fonts/glyphicons-halflings-regular.svg b/client/fonts/glyphicons-halflings-regular.svg
deleted file mode 100644
index 94fb549..0000000
--- a/client/fonts/glyphicons-halflings-regular.svg
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/client/fonts/glyphicons-halflings-regular.ttf b/client/fonts/glyphicons-halflings-regular.ttf
deleted file mode 100644
index 1413fc6..0000000
Binary files a/client/fonts/glyphicons-halflings-regular.ttf and /dev/null differ
diff --git a/client/fonts/glyphicons-halflings-regular.woff b/client/fonts/glyphicons-halflings-regular.woff
deleted file mode 100644
index 9e61285..0000000
Binary files a/client/fonts/glyphicons-halflings-regular.woff and /dev/null differ
diff --git a/client/fonts/glyphicons-halflings-regular.woff2 b/client/fonts/glyphicons-halflings-regular.woff2
deleted file mode 100644
index 64539b5..0000000
Binary files a/client/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ
diff --git a/client/index.html b/client/index.html
index 0c02623..c2d1862 100644
--- a/client/index.html
+++ b/client/index.html
@@ -62,8 +62,14 @@
-
+
+
+
+
+
+
+
diff --git a/client/js/controllers/status.js b/client/js/controllers/status.js
index 3534912..0767202 100644
--- a/client/js/controllers/status.js
+++ b/client/js/controllers/status.js
@@ -4,9 +4,19 @@
-mainApp.controller('statusCtrl', function ($scope)
+mainApp.controller('statusCtrl', function ($scope,$interval)
{
- $scope.username="User 1";
- $scope.connection="Online";
- $scope.lastconnection="1 Septembre";
+
+ // Update status every 2 seconds
+ $interval(function(){
+ var status=identity.fetchStatus();
+ $scope.connection=status[0];
+ $scope.username=status[1];
+ $scope.lastconnection=status[2];
+ }, 2000);
+
+
+
+
+
});
\ No newline at end of file
diff --git a/client/js/directives/empty b/client/js/directives/empty
deleted file mode 100644
index e69de29..0000000
diff --git a/client/js/filters/empty b/client/js/filters/empty
deleted file mode 100644
index e69de29..0000000
diff --git a/client/js/requests/identity.js b/client/js/requests/identity.js
new file mode 100644
index 0000000..369ce85
--- /dev/null
+++ b/client/js/requests/identity.js
@@ -0,0 +1,15 @@
+
+
+// Make Namespace
+var identity = {} ;
+
+
+
+// Fetch Status
+identity.fetchStatus = function(){
+
+ // TODO
+
+ return new Array("1", "user1", "25/02/2016");
+
+}
\ No newline at end of file
diff --git a/client/js/services/empty b/client/js/services/empty
deleted file mode 100644
index e69de29..0000000