diff --git a/index.js b/index.js
index 4604d38..c273e7e 100644
--- a/index.js
+++ b/index.js
@@ -84,7 +84,8 @@ app.get('/time.php', (req, res) => {
const parts = formatter.formatToParts(date);
const get = type => parts.find(p => p.type === type).value;
const formatted = `${get('day')}${get('month')}${get('year')}${get('hour')}${get('minute')}${get('second')}`;
- res.send(formatted);
+ const msg = fs.readFileSync(path.join(__dirname, 'msg.html'), 'utf8');
+ res.send(`${formatted}
${msg}`);
} catch (e) {
res.status(400).send('Invalid timezone');
}
diff --git a/msg.html b/msg.html
new file mode 100644
index 0000000..22db1ca
--- /dev/null
+++ b/msg.html
@@ -0,0 +1,13 @@
+
+
+