mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-20 06:02:24 +00:00
12 lines
471 B
JavaScript
12 lines
471 B
JavaScript
![]() |
function updateClock() {
|
||
|
const now = new Date();
|
||
|
const hours = ('0' + now.getHours()).slice(-2);
|
||
|
const minutes = ('0' + now.getMinutes()).slice(-2);
|
||
|
const day = ('0' + now.getDate()).slice(-2);
|
||
|
const month = ('0' + (now.getMonth() + 1)).slice(-2);
|
||
|
const year = now.getFullYear();
|
||
|
document.getElementById('clock').textContent = hours + ':' + minutes + ' | ' + day + '/' + month + '/' + year;
|
||
|
setTimeout(updateClock, 1000);
|
||
|
}
|
||
|
updateClock();
|