7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
const autenticar = function(req, res){
|
|
res.render('autenticar/index', {
|
|
title: "Picolo"
|
|
})
|
|
}
|
|
|
|
module.exports = { autenticar } |