add account selection, settings, login modal

Change-Id: Ica6d38270c783de070bf1d5bb30603173dbeb0df
diff --git a/routes/index.js b/routes/index.js
index 7ddb40e..01e6c07 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -1,15 +1,9 @@
-var express = require('express');
-var router = express.Router();
-var path = require('path');
-
-// /* GET home page. */
-// router.get('/', function (req, res, next) {
-//     console.log("Request get index");
-//     res.render('index', { title: 'Express' });
-// });
+const express = require('express');
+const router = express.Router();
+const path = require('path');
 
 /* GET React App */
-router.get(['/app', '/app/*'], function (req, res, next) {
+router.get(['/app', '/app/*'], (req, res, next) => {
     res.sendFile(path.join(__dirname, '../public', 'index.html'));
 });