-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
20 lines (16 loc) · 727 Bytes
/
Copy pathscript.js
File metadata and controls
20 lines (16 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function appTracker() {
window.open('https://forms.gle/ttuHEVi725RMhQf17', '_blank'); // Opens the link in a new tab
}
function intTracker() {
window.open('https://forms.gle/AhMQkJ1uVHbgBNVn8', '_blank'); // Opens the link in a new tab
}
function analysisTracker() {
window.open('https://docs.google.com/spreadsheets/d/1TY0G_WjYtZ6YSbRNkN-LVqnd8U-HffYGzCgH54CZCAo/edit?usp=sharing', '_blank'); // Opens the link in a new tab
}
function updateDateTime() {
const now = new Date();
const formattedDateTime = now.toLocaleString();
document.getElementById('datetime').textContent = formattedDateTime;
}
setInterval(updateDateTime, 1000);
updateDateTime(); // Initial call to display the time immediately