blob: 11d45bb57995524eb4230e8e309f64c6980a17b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
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' });
});
}
|