1
0

Added basic database delete page

This commit is contained in:
2016-03-15 13:21:33 +01:00
parent 1df24799c5
commit ee2462a40c
5 changed files with 97 additions and 2 deletions

View File

@ -47,6 +47,16 @@ function sendJqueryUI(response) {
response.end(html);
}
function sendClear(response) {
console.log("Request handler 'clear' was called.");
response.writeHead(200, {"Content-Type": "text/html"});
var html = fs.readFileSync(__dirname + "/clear.html")
response.end(html);
}
exports.sendClear = sendClear;
exports.sendBootstrap = sendBootstrap;
exports.sendJqueryUI = sendJqueryUI;