globalController.js 276 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 export const home = (req,res)=>{ return res.render("home",{siteTitle: "movie!",pageTitle:"home Page!"}); } export const join= (req,res) =>{ return res.send("hello this is joinpage!"); } export const login = (req,res)=>{ return res.send("hello this is login!"); }