Add first two pages (placeholders), and navigation mechanism

This commit is contained in:
Senad Uka
2019-04-09 06:01:21 +02:00
parent 262f71164c
commit 5b25068009
9 changed files with 57 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
const getDobrodosli = (req,res) => {
res.render('dobrodosli', { nextStep: '/vrstanekretnine' } );
}
module.exports = {
getDobrodosli
};

View File

@@ -1,5 +1,5 @@
const getVrstaNekretnine = (req,res) => {
res.render('vrsta_nekretnine');
res.render('vrsta_nekretnine', { nextStep: '/' } );
}
module.exports = {