diff --git a/html_login_app/style.css b/html_login_app/style.css index d5f801c..b561af6 100644 --- a/html_login_app/style.css +++ b/html_login_app/style.css @@ -42,7 +42,7 @@ label { input { width: calc(100%-20px); - padding: 10px + padding: 10px; margin-top: 5px; border: 1px solid #ccc; border-radius: 4px; diff --git a/simple_authn/server.js b/simple_authn/server.js index e492a1f..95dd2d1 100644 --- a/simple_authn/server.js +++ b/simple_authn/server.js @@ -12,7 +12,7 @@ const users = [ app.use(bodyParser.json()); app.get('/', (req, res) => { - res.status(200).json({message: ''}); + res.status(200).json({message: 'hello world'}); }); // Endpoint for user authentication diff --git a/simple_node_login/public/login.html b/simple_node_login/public/login.html index 211ec25..eaad6f7 100644 --- a/simple_node_login/public/login.html +++ b/simple_node_login/public/login.html @@ -7,8 +7,8 @@

Login

- - + +
diff --git a/simple_node_todo/index.html b/simple_node_todo/index.html index 5ad6eb5..2fe1f80 100644 --- a/simple_node_todo/index.html +++ b/simple_node_todo/index.html @@ -38,6 +38,6 @@

}); }); }); -