Commit inicial
This commit is contained in:
7
controllers/autenticarController.js
Normal file
7
controllers/autenticarController.js
Normal file
@@ -0,0 +1,7 @@
|
||||
const autenticar = function(req, res){
|
||||
res.render('autenticar/index', {
|
||||
title: "Picolo"
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = { autenticar }
|
||||
7
controllers/homeController.js
Normal file
7
controllers/homeController.js
Normal file
@@ -0,0 +1,7 @@
|
||||
const home = function(req, res){
|
||||
res.render('home/index', {
|
||||
title: "Picolo"
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = { home }
|
||||
Reference in New Issue
Block a user