Added the start of the login page

This commit is contained in:
2022-05-24 23:50:49 -04:00
parent cb622ebea0
commit cf94bde3a3
6 changed files with 171 additions and 0 deletions

3
routes/auth.js Normal file
View File

@ -0,0 +1,3 @@
exports.getLogin = (req, res, next) => {
res.render('auth/login');
};