Commit inicial

This commit is contained in:
2024-10-03 21:47:02 -04:00
commit 982c618c13
13 changed files with 1756 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const autenticar = function(req, res){
res.render('autenticar/index', {
title: "Picolo"
})
}
module.exports = { autenticar }

View File

@@ -0,0 +1,7 @@
const home = function(req, res){
res.render('home/index', {
title: "Picolo"
})
}
module.exports = { home }