Add basic scouting web page

This patch adds a basic web page. Ishan did the vast majority of the
work here. Future patches will integrate it with the rest of the
scouting web server.

Change-Id: I467bd16caade9c987022600c2b63e9fad20da1a3
Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Signed-off-by: Ishan Katpally <100026402@mvla.net>
Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/scouting/scouting_test.ts b/scouting/scouting_test.ts
index bb1c075..9ee9122 100644
--- a/scouting/scouting_test.ts
+++ b/scouting/scouting_test.ts
@@ -14,7 +14,7 @@
   }
 
   async getParagraphText() {
-    return (await this.waitForElement(element(by.css('h1')))).getText();
+    return (await this.waitForElement(element(by.css('.header')))).getText();
   }
 }
 
@@ -27,6 +27,6 @@
 
   it('should display: This is an app.', async () => {
     await page.navigateTo();
-    expect(await page.getParagraphText()).toEqual('This is an app.');
+    expect(await page.getParagraphText()).toEqual('Auto');
   });
 });