1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 18:39:32 +00:00

Added login template and route

This commit is contained in:
2022-01-31 15:08:56 +00:00
parent 877d3dcac3
commit 4ca12b94cb
2 changed files with 17 additions and 0 deletions

View File

@@ -7,6 +7,12 @@ router.get('/', (req, res) => {
});
});
router.get('/login', (req, res) => {
return res.render('login', {
title: 'Stratos - Login'
});
});
module.exports = {
root: '/',