CORD Subscriber Demo - skeleton index.html and fixed web.xml to carve off namespace for RS

Change-Id: Ifa31e705906eb88c0ad762035fe6ede6aba210f2
diff --git a/apps/demo/cord-gui/src/main/webapp/WEB-INF/web.xml b/apps/demo/cord-gui/src/main/webapp/WEB-INF/web.xml
index 79bf713..0ee2555 100644
--- a/apps/demo/cord-gui/src/main/webapp/WEB-INF/web.xml
+++ b/apps/demo/cord-gui/src/main/webapp/WEB-INF/web.xml
@@ -38,7 +38,7 @@
 
     <servlet-mapping>
         <servlet-name>JAX-RS Service</servlet-name>
-        <url-pattern>/*</url-pattern>
+        <url-pattern>/rs/*</url-pattern>
     </servlet-mapping>
 
 </web-app>
diff --git a/apps/demo/cord-gui/src/main/webapp/index.html b/apps/demo/cord-gui/src/main/webapp/index.html
new file mode 100644
index 0000000..ecefd67
--- /dev/null
+++ b/apps/demo/cord-gui/src/main/webapp/index.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<!--
+~ Copyright 2015 Open Networking Laboratory
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~     http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+~
+-->
+<html>
+<head>
+    <meta charset="utf-8">
+
+    <title>CORD Subscriber Portal</title>
+</head>
+<body>
+  <h1> CORD Subscriber Portal </h1>
+
+  <p>(Content to go here)</p>
+</body>
+</html>