This commit is contained in:
psychobunny
2013-04-25 19:13:31 +00:00
5 changed files with 8 additions and 11 deletions

View File

@@ -103,7 +103,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() {