CORD GUI -- Dashboard and login pages have new look. WIP.

Change-Id: Ib38870c8acb5f443d2aedb6580180f5457f944df
diff --git a/apps/demo/cord-gui/src/main/webapp/cord.js b/apps/demo/cord-gui/src/main/webapp/cord.js
index 2d012ae..be81978 100644
--- a/apps/demo/cord-gui/src/main/webapp/cord.js
+++ b/apps/demo/cord-gui/src/main/webapp/cord.js
@@ -73,8 +73,9 @@
         }])
         .controller('CordCtrl', ['$scope', '$location',
             function ($scope, $location) {
-            $scope.shared = {
-                url: 'http://' + $location.host() + ':' + $location.port()
-            };
-        }]);
+                $scope.shared = {
+                    url: 'http://' + $location.host() + ':' + $location.port()
+                };
+                $scope.page = {};
+            }]);
 }());