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

Prepare for register and login functionality

This commit is contained in:
2022-02-13 21:53:13 +00:00
parent 41930b450b
commit 7ce12f5ef4
6 changed files with 10 additions and 6 deletions

View File

@@ -10,7 +10,8 @@ router.get('/', (req, res) => {
router.get('/dashboard', (req, res) => {
return res.render('dashboard', {
title: 'Stratos - Dashboard',
current: 'Dashboard'
current: 'Dashboard',
name: req.session.fullName
});
});