aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.js')
-rw-r--r--routes/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/routes/index.js b/routes/index.js
index 93a632e..8681a0e 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -9,3 +9,14 @@ exports.index = function(req, res){
// res.render(TEMPLATE, OBJECT WITH VARIABLES)
res.render('index', { title: 'Express' });
};
+
+
+/*
+ * GET login page
+ *
+ * '/login'
+ */
+
+exports.login = function(req, res) {
+ res.render('login', {title: 'Logg inn' });
+}