Register, Login, and Logout

This commit is contained in:
2026-05-13 19:27:59 -04:00
parent f591bdffb5
commit 86f94b7bf3
23 changed files with 737 additions and 25 deletions
+9
View File
@@ -0,0 +1,9 @@
const express = require('express');
const router = express.Router();
router.get('/', async (req, res) => {
console.log(`nonce: ${res.locals.globalScriptNonce}`);
res.render('index', {title: 'Domain Manager'});
});
module.exports = router;