diff -r 14388e456fdf -r 5f43030d87fe bin/server --- a/bin/server Mon Dec 22 23:02:08 2014 +0100 +++ b/bin/server Mon Dec 22 23:44:36 2014 +0100 @@ -10,11 +10,32 @@ } http.createServer(function (req, res) { - res.writeHead(200, {'Content-Type': 'text/plain'}); - res.write('hello, I know nodejitsu.'); + var htmlcode = [ + '', + '', + '
', + '', + '', + '', + 'Placeholder for forthcoming crossdomain cookie examination.
', + 'Pending approval from Nodejitsu [1] administrators.
', + '', + '', + '' + ].join(''); + + res.writeHead(200, {'Content-Length': Buffer.byteLength(htmlcode, 'utf8'), + 'Content-Type': 'text/html;' + }); + res.write(htmlcode); res.end(); }).listen(port); - - console.log('The http server has started at: ' + url);