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

Added register template and route

This commit is contained in:
2022-01-31 21:30:55 +00:00
parent 7335891a87
commit 5e31c06f75
3 changed files with 23 additions and 0 deletions

View File

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