new 403 page

This commit is contained in:
Julian Lam
2013-04-25 14:21:00 -04:00
parent 7e637a93bb
commit 81364580ed
5 changed files with 8 additions and 11 deletions

View File

@@ -93,7 +93,7 @@ var express = require('express'),
});
app.get('/403', function(req, res) {
res.send(403, 'You are not authorized to view this page');
res.send(templates['header'] + templates['403'] + templates['footer']);
});
module.exports.init = function() {