blob: 6279d62b766b8e7c111f74a2521250b8fc1464dc (
plain) (
tree)
|
|
module.exports = function(app) {
/*
* GET home page.
*
* '/'
*/
app.get('/', function(req, res){
// check if the user's credentials are saved in a cookie
if (req.cookies.user == undefined || req.cookies.pass == undefined) {
res.render('index', { title: 'DERS' });
} else { // appempt automatic login
AM.autoLogin(req.cookies.user, req.cookies.pass, function(o) {
if (o != null) {
req.session.user = o;
res.redirect('/account');
} else {
res.render('index', { title: 'DERS' });
}
});
}
});
/*
* GET login page
*
* '/login'
*/
app.get('/login', function(req, res) {
res.render('login', { title: 'Logg inn' });
});
/*
* 404 ERROR
*/
app.get('*', function(req, res) {
res.render('error', { title: '404', text: 'Fant ikke siden' });
});
}
|