This commit is contained in:
biglyderv 2024-11-25 14:12:44 -05:00
parent cd0380f697
commit 3dea44dacf
12 changed files with 170 additions and 174 deletions

11
client/tou.js Normal file
View file

@ -0,0 +1,11 @@
import Route from "../route.js";
import auth from "../form/auth.js";
let main = new Route([auth], async function (req, res, input) {
let { username } = input;
return res.render('guidelines', {
username
});
});
export default main;