You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
221 B

  1. const debug = require('debug')('express:login');
  2. async function loadPage(req, res) {
  3. // debug('login:loadPage', req, res);
  4. res.render('pages/login',{
  5. email : req.session.email
  6. });
  7. }
  8. module.exports = loadPage;