diff --git a/views/starter-template.html b/views/starter-template.html index 6bbc1d8..8f53f9f 100644 --- a/views/starter-template.html +++ b/views/starter-template.html @@ -43,7 +43,7 @@ </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> - <li><a href="/">Home</a></li> + <!-- <li><a href="/">Home</a></li> --> </ul> </div><!--/.nav-collapse --> </div> @@ -53,7 +53,7 @@ <div class="starter-template"> - <h1>{{ title }}</h1> + <!-- <h1>{{ title }}</h1> --> {% block content %} diff --git a/webadmin.js b/webadmin.js index ec63442..cb7bbf6 100644 --- a/webadmin.js +++ b/webadmin.js @@ -13,7 +13,7 @@ function pageHome(req, res, next) { function doRestart(req, res, next) { if (config.webadmin.password.trim() && config.webadmin.password.trim() == req.body.password) { - res.end('Restarting'); + res.end('Restarting....'); process.exit(1); } else { res.redirect('/');