vpn.email
Version:
vpn.email client
16 lines (15 loc) • 544 B
JavaScript
;
const fs = require("fs");
module.exports = function (app) {
app.get("/home/", (req, res) => {
console.log('-------------------------------------');
const logo = fs.readFileSync('../../images/vpnemail.svg', 'utf8');
res.render('home', { title: 'home', logo: logo });
});
app.get("/home/install", (req, res) => {
res.render('home/install', { title: 'install' });
});
app.get("/home/question", (req, res) => {
res.render('home/question', { title: 'question' });
});
};