time, status, error history, running sessions, sessions history, private page with key, added

This commit is contained in:
2023-04-03 12:37:34 +03:00
parent 654907f1de
commit 1e0d1002d7
10 changed files with 268 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
const get_date_time = () => {
let currentdate = new Date();
let datetime = currentdate.getDate() + "/"
+ (currentdate.getMonth()+1) + "/"
+ currentdate.getFullYear() + " @ "
+ currentdate.getHours() + ":"
+ currentdate.getMinutes() + ":"
+ currentdate.getSeconds()
return datetime
}
module.exports = {
get_date_time
}