- Content test
+ {{ test }}
Main Content
@@ -70,7 +70,9 @@
-
+
+
+
\ No newline at end of file
diff --git a/client/js/controllers/main.js b/client/js/controllers/main.js
new file mode 100644
index 0000000..78d5849
--- /dev/null
+++ b/client/js/controllers/main.js
@@ -0,0 +1,10 @@
+/*
+ * mainApp Controller
+ */
+
+
+
+mainApp.controller('mainCtrl', function ($scope)
+{
+ $scope.test="Test title";
+});
\ No newline at end of file
diff --git a/client/js/controllers/mainApp.js b/client/js/controllers/mainApp.js
deleted file mode 100644
index 6ff39a9..0000000
--- a/client/js/controllers/mainApp.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
- * mainApp Controller
- */
-
-
-
-mainApp.controller('mainAppCtrl', function ($scope)
-{
- // TODO
-});
\ No newline at end of file
diff --git a/client/js/controllers/status.js b/client/js/controllers/status.js
new file mode 100644
index 0000000..3534912
--- /dev/null
+++ b/client/js/controllers/status.js
@@ -0,0 +1,12 @@
+/*
+ * mainApp Controller
+ */
+
+
+
+mainApp.controller('statusCtrl', function ($scope)
+{
+ $scope.username="User 1";
+ $scope.connection="Online";
+ $scope.lastconnection="1 Septembre";
+});
\ No newline at end of file
diff --git a/client/partials/nav.html b/client/partials/nav.html
index 5664b38..a765daa 100644
--- a/client/partials/nav.html
+++ b/client/partials/nav.html
@@ -18,9 +18,9 @@