1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 05:59:30 +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

@@ -6,7 +6,8 @@ const router = express.Router();
router.get('/tests', (req, res) => {
return res.render('tests', {
title: 'Stratos - Tests',
current: 'Tests'
current: 'Tests',
name: req.session.fullName
});
});